lsr

ls with regexp
ダウンロード: 415
更新 2017/8/10

ライセンスの表示

wrapper for ls, which lists the files in one or more folders
patterns can use combinatorial logic (and, or, not, etc)
patterns can use regexp or ls syntax
output can be a structure (ala ls), or a cell array of filenames.
examples:
list all files with extensions txt and m
[textfiles,mfiles] = lsr('*.txt','*.m');
m-files starting with A or B, names only (two examples)
foo = lsr('A* or B* and *.m','-name')
foo = lsr('^[A|B].*\.m$','-name')
txt files larger than 1MB and all mat files
foo = lsr('size>1mb and txt or mat')

引用

Christopher Pedersen (2024). lsr (https://www.mathworks.com/matlabcentral/fileexchange/46047-lsr), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2014a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersFile Operations についてさらに検索
タグ タグを追加

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.4.0.0

changed recursion of subfolders to use fileattrib instead of genpath
added -nomacfile to supress automatic use of -macfile option on mac OS systems

1.3.0.0

New warnings when receiving patterns that might be ambiguous.
New output option to return patterns
Fixed recursion of subfolders under windows
Added a warning when trying to use a range of matches (e.g. \d{1,3} to catch 1-3 digits), as this does not parse properly in lsr.

1.2.0.0

fixed bug where using -root and -path option together caused filenames to start with / or \

1.1.0.0

changed -root to be an optional output
help updated for clarification.

1.0.0.0