searchin for an M file in all folders of my PC.
古いコメントを表示
I want to search for an M file in all the folders of my PC.
I do not want to search in every folder individually.
1 件のコメント
Star Strider
2026 年 3 月 1 日
What operating system are you using?
回答 (3 件)
Paul
2026 年 3 月 1 日
d = dir("C:\**\filetofind.m")
Walter Roberson
2026 年 3 月 1 日
編集済み: Walter Roberson
2026 年 3 月 1 日
You could consider using command line tools
[status, result] = system('dir /s *FILENAMEGOESHERE*');
Image Analyst
2026 年 3 月 1 日
0 投票
Try "Everything" by voidtools: https://www.voidtools.com/
It can give you nearly instant results on where files live. Not like the Windows search utility that takes forever.
カテゴリ
ヘルプ センター および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!