You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
371 B
17 lines
371 B
mfile_name = mfilename('fullpath');
|
|
[pathstr,name,ext] = fileparts(mfile_name);
|
|
cd(pathstr);
|
|
|
|
cd ICANSAT/V0/Result
|
|
delete *.txt
|
|
fprintf("ICANSAT V0 result files deleted.\n");
|
|
|
|
cd ../../V1/Result
|
|
delete *.txt
|
|
fprintf("ICANSAT V1 result files deleted.\n");
|
|
|
|
cd ../../../MAD/Result
|
|
delete *.txt
|
|
fprintf("MAD result files deleted.\n");
|
|
|
|
cd(pathstr);
|