필터 지우기
필터 지우기

Looping over folders, skipping a folder if a file is present

조회 수: 10 (최근 30일)
I have code that executes a for loop through a folder and all of its subdirectories. My questions is how do I write the code in order to :
A.) check if a file is present within the folder in the for loop, and then
B.) skip that folder containing the file IF the file is present.
Here is the code i have been fumbling with so far:
mainFolder = 'c:\data';
subdirs = dir(mainFolder);
%This filters out all the items in the main folder that are not directories
subdirs(~[subdirs.isdir]) = [];
%And this filters out the parent and current directory '.' and '..'
tf = ismember( {subdirs.name}, {'.', '..'});
subdirs(tf) = [];
numberOfFolders = length(subdirs);
% %Here i am creating the variables to iterate over the date folders
% dates = fieldnames(subdirs);
% for loopIndex = 1:numel(dates)
% stuff = subdirs.(dates{loopIndex})
% end
% Here I begin the for loop. My aim is to tell the program to skip all %the folders that contain the file "Present.txt"
for K = 1: numberOfFolders
thissubdir = subdirs(K).name;
subdirpath = [mainFolder '\' thissubdir];
%This is WRONG WRONG WRONG... help please?
if exist('Present.txt') == 1
continue
end
Thanks for all the help!

채택된 답변

Image Analyst
Image Analyst 2013년 2월 3일
편집: Image Analyst 2013년 2월 3일
Since you aren't calling cd for every subdir (that's good by the way), you need to construct the full file name.
fullfileName = fullfile(subdirpath, 'Present.txt');
if exist(fullfileName , 'file') == 2
% Then the file exists, skip the rest of the code in the loop.
continue
end

추가 답변 (1개)

Cedric
Cedric 2013년 2월 3일
편집: Cedric 2013년 2월 3일
EDIT: jump to the solution provided by Image Analyst, it is better.
You should use fullfile() for building subdirpath. Now there are several solutions for you to check the existence of the file; but to stick to what you already used, you could do something like:
subdircontent = dir(subdirpath) ;
if ismember('Present.txt', {subdircontent.name})
...
  댓글 수: 1
Jan
Jan 2013년 2월 3일
ismember has a large overhead, e.g. a sorting or the strings. Therefore this is more efficient:
if any(strcmp('Present.txt', {subdircontent.name}))
But I admit, it will hardly make a program noticably faster...

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by