フィルターのクリア

How can I find a sub-folder in the (just in the) current directory ?

16 ビュー (過去 30 日間)
Peter Kerekes
Peter Kerekes 2017 年 7 月 13 日
コメント済み: Jigar Gopani 2022 年 7 月 4 日
I'd like to find a sub-folder in the currend directory. If not exist creat it. I tried to use if ~exist(,'file') but this search in other folders too, and find a sub-folder with the same name in other folder, but in the current directory not exist that sub-folder.

採用された回答

C.J. Harris
C.J. Harris 2017 年 7 月 13 日
You can specify exist to only look in the current directory. For example:
lFolder = 'MyFolder';
if(exist([cd filesep lFolder]) == 7)
disp('Folder found!')
end
  2 件のコメント
Jan
Jan 2017 年 7 月 13 日
編集済み: Jan 2017 年 7 月 13 日
Prefer fullfile to consider if cd replies e.g. 'c:\'.
if exist(fullfile(cd, lFolder), 'file') == 7
Calling exist(name) without 2nd input is critical: It replies 1 if a variable with this name is existing. Therefore exist should be used with the specifier of what kind of object you are searching in general.
Jigar Gopani
Jigar Gopani 2022 年 7 月 4 日
Why == 7 is used?

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSearch Path についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by