Effacer les filtres
Effacer les filtres

Save file with same name but different folder

3 vues (au cours des 30 derniers jours)
Nicolas
Nicolas le 11 Avr 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.

Réponse acceptée

Jan
Jan le 11 Avr 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 commentaire
Nicolas
Nicolas le 12 Avr 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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Software Development Tools dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by