how to check a path? file or folder?
조회 수: 13 (최근 30일)
이전 댓글 표시
답변 (3개)
Stephen23
2015년 2월 12일
편집: Stephen23
2015년 2월 22일
You can check for the existence of a specific file or a folder using exist . You can use the second argument to tell the function what kind of things you want to check for, and check that the output is the expected number:
2==exist('root\directory\filename.jpg','file')
S = dir('root\directory\*.jpg')
You can use relative or absolute paths, and the function returns a structure containing information that you might find useful, particularly the isdir logical.
댓글 수: 0
Michael Haderlein
2015년 2월 12일
Use the exist() function. It will return 2 for a file, 7 for a folder, and, in case the path does not exist at all, you'll get the value 0 and can do error handling.
댓글 수: 1
Michael Haderlein
2015년 2월 12일
...or, as Stephen has mentioned, use dir(). You'll need that to go through, anyway.
Image Analyst
2015년 2월 18일
You say "If it is a folder, I would like to go through its content and use all jpg images in there." So see my demo which goes through the folder and all its subfolders getting image filenames. You can then display or process them - whatever you want.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 File Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!