フィルターのクリア

how to select multiple files with similar extension

2 ビュー (過去 30 日間)
MAHMOUD ALZIOUD
MAHMOUD ALZIOUD 2017 年 10 月 12 日
コメント済み: MAHMOUD ALZIOUD 2017 年 10 月 12 日
Hello Guys, I have a folder that has a lot of files, how can i ask MATLAB to select just the files with the extension(07) to be run in MATLAB?

採用された回答

Jonathan Chin
Jonathan Chin 2017 年 10 月 12 日
try looking at the following function dir
path =pwd;
extension = '.07'
rtnFiles=dir(fullfile(path,['*' extension]))
  1 件のコメント
MAHMOUD ALZIOUD
MAHMOUD ALZIOUD 2017 年 10 月 12 日
This helps alot, thank you Mr Jon

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

その他の回答 (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