フィルターのクリア

what will be the query for calling a folder(by path) to do the following loop or anything?

1 回表示 (過去 30 日間)
what will be the query for calling a folder(by path) to do the following loop or anything?

採用された回答

Walter Roberson
Walter Roberson 2018 年 12 月 8 日
projectdir = 'path/to/the/folder';
dinfo = dir(projectdir);
dinfo( ismember({dinfo.name}, {'.', '..'}) ) = []; %get rid of . and ..
dinfo( [dinfo.isdir] ) = []; %get rid of subfolders if you want to
entries = fullfile(projectdir, {dinfo.name} );
numfiles = length(entries);
results = cell(numfiles, 1);
for K = 1 : numfiles
thisentry = entries{K};
% process information for thisentry
...
results{K} = ....
end
  6 件のコメント
Thara C.S
Thara C.S 2018 年 12 月 9 日
but i have to save each file with different name to a folder? the file has to be changing in each 'k' (each entry files).
so how i do that?
file_name='C:\Users\Thara c.s\Pictures\new for\new2OMI-Aura_L3-OMSO2e_2007m0101_v003-2018m0531t145810.he5.tif';
in the above example, 'new2OMI-Aura_L3-OMSO2e_2007m0101_v003-2018m0531t145810.he5'' is to change and also keep the .tif extension.
Walter Roberson
Walter Roberson 2018 年 12 月 9 日
in what II posted above you would change newentry however is appropriate . the code i posted shows how to extract the base name the new20 part but excluding the extension and then shows saving to a different folder and with a different extension . You could easily instead do something like the same folder but with 'processed_' as a prefix or whatever is appropriate . fileparts to break the input name into parts then do appropriate string manipulation then put the result together into the output file name .

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by