Borrar filtros
Borrar filtros

Save file with same name but different folder

3 visualizaciones (últimos 30 días)
Nicolas
Nicolas el 11 de Abr. de 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.

Respuesta aceptada

Jan
Jan el 11 de Abr. de 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 comentario
Nicolas
Nicolas el 12 de Abr. de 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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Software Development Tools en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by