RosettaCodeData/Task/Delete-a-file/MATLAB/delete-a-file-2.m
Ingy döt Net 0457928c3e ...
2013-04-10 15:42:53 -07:00

12 lines
246 B
Matlab

if system('rm input.txt') == 0
disp('input.txt removed')
end
if system('rm /input.txt') == 0
disp('/input.txt removed')
end
if system('rmdir docs') == 0
disp('docs removed')
end
if system('rmdir /docs') == 0
disp('/docs removed')
end