How I can write the names of file in note bad without extension?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ameligege
el 19 de Mzo. de 2015
Comentada: Ameligege
el 19 de Mzo. de 2015
Hello
I Want To write The names of file that I read it Using for loop without any comma and extension Here is the code that I tried It but the out put is not what I want Can Any one Help ,Please?
for i = 1 : length(srcFiles)
dlmwrite('target.txt',srcFiles(i).name, '-append', 'newline', 'pc');
Here is the format of this code output
0,0,4,_,L,0,_,0,.,b,m,p
0,0,4,_,L,1,_,0,.,b,m,p
Here is the output that I want
004_L0_0
004_L1_0
I am Waiting for any help............
0 comentarios
Respuesta aceptada
wil
el 19 de Mzo. de 2015
Editada: wil
el 19 de Mzo. de 2015
Use can use fprintf and fileparts functions for each line of your output:
fid = fopen('target.txt','a+');
for i = 1:length(srcFiles)
% separate file name into path, name and extension
[pathstr,name,ext] = fileparts(srcFiles(i).name);
% add only the path and name (no extension)
fprintf(fid,'%s\n',fullfile(pathstr,name));
end
fclose(fid);
If you don't want to include the filepath, you can just remove pathstr from the fprintf statement. If there is no pathstr in your filename, it will be an empty string so won't matter anyway.
Hope this helps, Wil
Más respuestas (0)
Ver también
Categorías
Más información sobre Call Web Services from MATLAB Using HTTP en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!