genpath_exclude

Executes like genpath, but can ignore specified directories.
2,3K descargas
Actualizado 27 oct 2009

Ver licencia

Executes like genpath, but can ignore directories. Useful to add a directory hierarchy to your path, but ignore CM directories such as "CVS" or ".svn"

Directories may be excluded using regular-expressions as well.

Tested on windows only, but should work on any platform.

Example usage:
genpath_exclude('C:\myDir',{'CVS'}) %<--- simple usage to ignore CVS direcotries

genpath_exclude('C:\myDir',{'\.svn'}) %<--- simple usage to ignore .svn (note that "." must be escaped for proper handling in the regexp)

genpath_exclude('C:\myDir',{'CVS','#.*'}) %<----more advanced usage to ignore CVS directories and any directory starting with "#"

Citar como

Jesse Hopkins (2024). genpath_exclude (https://www.mathworks.com/matlabcentral/fileexchange/22209-genpath_exclude), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2007b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre File Operations en Help Center y MATLAB Answers.
Etiquetas Añadir etiquetas
Agradecimientos

Inspirado por: Recursive addpath

Inspiración para: genpath2, deploypcode(source_dir, target_dir, varargin)

Community Treasure Hunt

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

Start Hunting!
Versión Publicado Notas de la versión
1.4.0.0

fixed regexp handling. wrapped each expression in ^ and $ chars. Added more help comments

1.3.0.0

Updated description.

1.2.0.0

Made input more robust so that if user enters a string as 'excudeDir' rather than a cell array of strings this function will still work.

1.1.0.0

Updated file so that it is a modified version of genpath, rather than post-processing the output of genpath.

1.0.0.0