filehound

버전 1.0.0.0 (1.49 KB) 작성자: Ronald Ouwerkerk
The M script filehound.m recursively searches directories for files matching a file filter.
다운로드 수: 2.8K
업데이트 날짜: 2001/3/6

라이선스 없음

The M script filehound.m recursively searches directories for files matching a file filter (e.g. '*.m') and produces a list of type cell array with all pathnames for files that match the filter. It also produces a text file with the same information. This filename is chosen with the uiputfile utility.

The list could be used to examine the contents of each file:

filelist = filehound;
for i=1:length(filelist)
fid = fopen(filelist{i}, 'r')
A = fread(fid.....
......
end

The directory names are filtered for spaces and quote characters to prevent errors in Unix environments.

인용 양식

Ronald Ouwerkerk (2024). filehound (https://www.mathworks.com/matlabcentral/fileexchange/171-filehound), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R12
모든 릴리스와 호환
플랫폼 호환성
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.0.0.0