フィルターのクリア

Delete files inside subfolder

69 ビュー (過去 30 日間)
Nik Rocky
Nik Rocky 2020 年 6 月 26 日
コメント済み: Nik Rocky 2020 年 6 月 26 日
Hello,
I have a folder:
Testfolder
Inside are:
1.mat
1.txt
1.wav
SubTestfolder
Inside SubTestfolder are:
2.mat
2.txt
2.wav
I do
Del_path = fullfile(TestFolderPath,SubTestFoldername);
delete(Del_path,'*.mat')
I was waiting that 2.mat should be deleted, but it will be 1.mat deleted, not 2.mat. Why? How can I delete files/all files in subfolder?
Thank you!

採用された回答

Fangjun Jiang
Fangjun Jiang 2020 年 6 月 26 日
use dir('**/*.mat') to find files in subfolders in one shot and then use a for-loop to delete the files.
  1 件のコメント
Nik Rocky
Nik Rocky 2020 年 6 月 26 日
Thanks, but it is to complicated. I found easy way:
delete(fullfile(SubfolderPath,'*.png')) % or '*'

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEnvironment and Settings についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by