Filter löschen
Filter löschen

Save file with same name but different folder

3 Ansichten (letzte 30 Tage)
Nicolas
Nicolas am 11 Apr. 2011
Hi,
I have a selection of files that i would like to change, then save these files with the same name but in a different folder.
list_files2load = ls('*.txt');
[m,n] =size(list_files2load);
for j=1:m
sprintf('loading file : %s',list_files2load(j,:))
s=load(list_files2load(j,:));
s(:,7)=s(:,7).*pi;
s(:,8)=s(:,8).*pi;
I'm changing two columns of 's' and i want to save this file with the same name (the one in list_files2load(j,:)) but in a different folder.
i didn't manage using the save command..
so I welcome any advice!
Cheers,
n.

Akzeptierte Antwort

Jan
Jan am 11 Apr. 2011
Using the LS command and catching the CHAR array output is not stable, because it kills trailing spaces. Better:
list_files2load = dir('*.txt');
files = {list_files2load.name};
m = length(files);
for j=1:m
sprintf('loading file : %s', files{j})
s = load(files{j});
s(:,7)=s(:,7).*pi;
s(:,8)=s(:,8).*pi;
save(fullfile('D:\Temp\', files{j}), 's');
end
  1 Kommentar
Nicolas
Nicolas am 12 Apr. 2011
Thanks a lot
the fullfile works better like that for me !
save(fullfile('C:','Users','nlec002','Desktop','Data shape 1Hz','data', files{j}), 's','-ASCII')
cheers

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Software Development Tools finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by