Search for files in directory
196 ビュー (過去 30 日間)
古いコメントを表示
How do i search for certain file in all directory. Do i need to write loop statement? example filename : '*.xyx\test.txt' (* - refer directory c , d, f, g)
Provide me sample code. Advance Thanking
0 件のコメント
回答 (2 件)
Othmane ELMOUATAMID
2020 年 2 月 18 日
Just in case someone looks for the same problem :
I needed to list only .mat files that contains a specific string (here my variable "InputFileName") and begins with 'res_" :
dotMatFiles = struct2cell(dir(fullfile(path2MatRes,['res_*',InputFileName,'*.mat'])))';
This line of code get the list of all matlab files and stock the information into a cell array so I can loop through it later to get the full path of the files.
I hope this would help someone.
0 件のコメント
Azzi Abdelmalek
2016 年 8 月 30 日
編集済み: Azzi Abdelmalek
2016 年 8 月 30 日
d='E:\' % your directory
f=dir(fullfile(d,'test.txt'))
参考
カテゴリ
Help Center および File Exchange で File Operations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!