How to delete only contents from folder? contents might include folders and files

7 views (last 30 days)
Hi
How to delete only contents from folder? contents might include folders and files
Best Vahid

Answers (1)

Walter Roberson
Walter Roberson on 28 Jul 2015
whichfolder = 'MyFolderName';
dinfo = dir(fullfile(whichfolder,'*.*'));
dinfo(dinfo.isdir) = []; %remove the directories from consideration
for K = 1 : length(dinfo)
thisfile = fullfile(whichfolder, dinfo(K).name);
delete(thisfile);
end

Categories

Find more on Debugging and Analysis in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!