Skip to content
Snippets Groups Projects
Commit f0c27686 authored by Marco Ratto's avatar Marco Ratto
Browse files

fixed output argument as a proper char matrix for both unix and windows OS.

(cherry picked from commit 844cbac2)
parent 2a77a89e
No related branches found
No related tags found
No related merge requests found
......@@ -47,6 +47,12 @@ for indPC=1:length(Parallel),
end
if check ~= 0 || ~isempty(strfind(ax,'No such file or directory'));
ax=[];
else
indax=regexp(ax,'\n');
colax=indax(1);
rowax=length(indax);
ax=reshape(ax',[colax rowax])';
ax=ax(:,1:end-1);
end
else
......@@ -67,7 +73,6 @@ for indPC=1:length(Parallel),
end
end
dirlist = char(dirlist, ax);
else
if exist('OCTAVE_VERSION'), % Patch for peculiar behaviour of ls under Windows.
if Parallel(indPC).Local==0,
......@@ -92,6 +97,10 @@ for indPC=1:length(Parallel),
ax=ls(filename);
end
end
end
if isempty(dirlist),
dirlist=ax;
elseif ~isempty(ax),
dirlist = char(dirlist, ax);
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment