existを用いたフォルダの存在の判定
78 views (last 30 days)
Show older comments
existを用いて複数のフォルダの有無を確かめたいと考えています。 existは
exist myfolder dir
のmyfolderがフォルダ名でないと機能しないと思いますが、今回は
フォルダ名はstrcatで生成してこれをexistで判定したいと考えています。
この場合どのように設定すればいいでしょうか。
0 Comments
Accepted Answer
Hirokazu Tanaka
on 28 Aug 2018
"フォルダ名はstrcatで生成" とはどういう状況でしょう・・。
existで判定させたいフォルダ名(最初の例での myfolder) が変数の値(文字列)として存在するということでしょうか。
その場合は(変数名を varname とすると・・)
exist(varname,'dir')
と関数の引数として与えることで同じ実行になりますよ。
0 Comments
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!