필터 지우기
필터 지우기

Files missing from a folder

조회 수: 4 (최근 30일)
MS11
MS11 2020년 9월 22일
답변: Walter Roberson 2020년 9월 22일
How skip the missing files from a sequence of 2041 text files by code.
example shown in picture.
Note: There are many missing files in a folder

답변 (1개)

Walter Roberson
Walter Roberson 2020년 9월 22일
for K = 1 : 2041
thisfile = sprintf('%d.txt', K);
if ~exist(thisfile, 'file'); continue; end
%file exists, process it
end
Or use dir() to find what does exist.
Note that if you use dir() and the file names do not have leading zeros for the one and two digit file names, then the order dir() returns will typically not be numeric. dir() does not define the order it returns files in, but typically the order is sorted by character value from left to right, so '1.txt' then '10.txt' because of how '0' sorts relative to '.'

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by