Create Folder and Keep files

7 views (last 30 days)
Robert Roy
Robert Roy on 23 May 2017
Commented: Naqvi on 17 Sep 2019
Hi there, I am trying to save matlab images and excel files into a specific folder on my hardrive. This requires to make a new folder using mkdir however everytime I run the code and I change the base file to get a new set of results , all the old set of results are replaced by the new files, basically there duplicated with the same base name
%%Saving Images to Folder
% DESCRIPTIVE TEXT
for k=1:8;
mkdir H:\7thMarch
folder='H:\7thMarch';
baseFileName=sprintf('Fig%d.fig',k);
fullFileName=fullfile(folder,baseFileName);
savefig(F(k),fullFileName);
end
%%Saving to Excel
% DESCRIPTIVE TEXT
baseFileName=sprintf('Eq2.1.xlsx',k);
fullFileName=fullfile(folder,baseFileName);
sheet=1;
xlRange='A1';
xlswrite(fullFileName,HAB.',sheet,xlRange);
  1 Comment
Walter Roberson
Walter Roberson on 23 May 2017
Are you asking how to look in the folder to determine which Fig*.fig files already exist, so as to use the next available numbering instead of always using Fig1.fig through Fig8.fig ?
If so, have you considered using a date/time component to the name so that the names do not clash?

Sign in to comment.

Answers (1)

kousar majeed
kousar majeed on 14 Jun 2019
HOW TO CREATE A FOLDER AND SAVE IT IN MATLAB need code

Community Treasure Hunt

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

Start Hunting!