Moving Bulk MATLAB file to different folders

1 回表示 (過去 30 日間)
Prasad Joshi
Prasad Joshi 2022 年 1 月 24 日
編集済み: Prasad Joshi 2022 年 1 月 24 日
I m moving bulk matlab files to a different folder .For one file I did using Movefile command....Can someone suggest code for loading the file in one go instead of using Movefile command everytime ...Like Case161.mat to case 161 then case163.mat to case 163 so on.....Thank you in advance ....

採用された回答

Stephen23
Stephen23 2022 年 1 月 24 日
編集済み: Stephen23 2022 年 1 月 24 日
P = 'absolute or relative path to where the files are saved':
S = dir(fullfile(P,'*.mat'))
for k = 1:numel(S)
[~,N,~] = fileparts(S(k).name);
D = fullfile(P,N);
F = fullfile(P,S(k).name);
mkdir(D) % optional
movefile(F,D)
end
  1 件のコメント
Prasad Joshi
Prasad Joshi 2022 年 1 月 24 日
編集済み: Prasad Joshi 2022 年 1 月 24 日
Thank you Stephen ...The code work and was able to sort also ...

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by