How I can write the names of file in note bad without extension?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
wil
le 19 Mar 2015
Modifié(e) : wil
le 19 Mar 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
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Call Web Services from MATLAB Using HTTP dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!