Recursive Directory Searching for Multiple File Specs

버전 1.7.0.0 (5.72 KB) 작성자: Jonathan Sullivan
Searches a directory for multiple file specs with optional recursivity
다운로드 수: 1.5K
업데이트 날짜: 2013/2/20

라이선스 보기

편집자 메모: This file was selected as MATLAB Central Pick of the Week

dir2 List directory.
DIR2('directory_name') lists the files in a directory. Pathnames and
wildcards may be used. For example, DIR *.m lists all program files
in the current directory.

DIR2('directory_name','-r') Lists the files in a directory, and it's
subdirectories.

DIR2('directory_name',filter1,filter2,...) Applies the filters FILTER1
and FILTER2, etc to the directory search. These filters are treated as
an OR. Thus a file must only match atleast one filter to be included.
Filters may be strings, or cell arrays of strings.

DIR2('directory_name','-r',filter1,filter2,...) The recursive flag and
the filters may be in any order.

D = DIR2('directory_name') output the results in an M-by-1
structure with the fields:
name -- Filename
date -- Modification date
bytes -- Number of bytes allocated to the file
isdir -- 1 if name is a directory and 0 if not
datenum -- Modification date as a MATLAB serial date number.
This value is locale-dependent.

EXAMPLES:
Example 1: Recursive directory listing of the current directory
d = dir2(pwd,'-r')
{d.name}'

Example 2: Using multiple filters
d = dir2(pwd,'*.mat','*.m')
{d.name}'

Example 3: Using multiple filters w/ a recursive search
d1 = dir2(pwd,'*.mat','*.m','-r')
d2 = dir2(pwd,'-r','*.mat','*.m')
% Notice order of the flags doesn't matter
isequal(d1,d2)

NEW: Now implemented also as MEX file. Unfortunately only windows is supported for the MEX file, but the .m version is fully function regardless of OS. The MEX version seems to provide a ~20x speedup over the .m implementation. Syntax is identical, and will mex itself (assuming you have a compiler)

인용 양식

Jonathan Sullivan (2024). Recursive Directory Searching for Multiple File Specs (https://www.mathworks.com/matlabcentral/fileexchange/40016-recursive-directory-searching-for-multiple-file-specs), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2012b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 File Operations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.7.0.0

Increased the maximum number of filterspecs the MEX file can take from 20 to 10,000.

1.6.0.0

Fixed minor bug in the non-recursive MEX implementation

1.5.0.0

Modified memory management in the MEX file to allow for a smaller footprint.

1.4.0.0

Added a MEX implementation for Windows users.

1.3.0.0

Fixed an issue that caused dir2 to exceed recursion limit in older versions of MATLAB.