Recursive directory walk with -exec (UNIX type)

版本 1.2.0.0 (2.2 KB) 作者: Ashish Uthama
Directory walking with input function handle called with each matching file found.
1.5K 次下载
更新时间 2010/5/10

查看许可证

See decription of RDIR (linked in Acknowledgements) for wildcard use.

Calls a function handle for each matching file found.

rdirExec(ROOT,EXECFUN,OPTEXECFUNARGS)

Recursive directory walk. EXECFUN is a function handle that gets called for each matching file found.The first input argument being the full path of the file, followed by the optional OPTEXECFUNARGS

ROOT is the directory starting point and includes the wildcard specification. Pathnames and wildcards may be used. Wild cards can exist in the pathname too. A special case is the double * that will match multiple directory levels, e.g. c:\**\*.m. Otherwise a single * will only match one directory level.
e.g. C:\Program Files\Windows *\

EXECFUN is a function handle which takes at least one input argument

OPTEXECFUNARGS are optional input arguments to EXECFUN

Examples:

% To create a file list
fid=fopen('fileList.txt','wt');
rdirExec('c:\program files\windows *\**\*.dll',@callBack,fid)
fclose(fid);

%The callBack function has the following signature
function callBack(varargin)
fileName=varargin{1};
fid=varargin{2};
fprintf(fid,'%s\n',fileName);
end

引用格式

Ashish Uthama (2024). Recursive directory walk with -exec (UNIX type) (https://www.mathworks.com/matlabcentral/fileexchange/22544-recursive-directory-walk-with-exec-unix-type), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2008b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Search Path 的更多信息
致谢

参考作品: Recursive directory listing

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.2.0.0

*Fixed 'clear D' bug

1.1.0.0

text indents in desc

1.0.0.0