Azzera filtri
Azzera filtri

How can I print names of files or folders contained in a specific folder in first (( COLUMN A ) in excel sheet?

1 visualizzazione (ultimi 30 giorni)
this code its modified by Shiran Golan with best thanks to him ,
% srcFolders = dir;
for folder = 1:length(srcFolders)
srcFolders(folder).fullname = strcat('D:\',srcFolders(folder).name);
end
xlswrite('xlsFile', {srcFolders(:).fullname}, 'xlsSheet','A1');

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 22 Lug 2015
for folder = 1:length(srcFolders)
data{folder,1} = fullfile('D:',srcFolders(folder).name);
end
xlswrite('xlsFile', data, 'xlsSheet','A1');

Più risposte (0)

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by