listing folders in directory with specific strings

조회 수: 70 (최근 30일)
Jorge Rivé
Jorge Rivé 2018년 8월 16일
편집: Jorge Rivé 2018년 8월 17일
I have a directory full of folders. I want to only list (and count) those with a specific naming format that starts with a numerical string and not any other folders in that directory. How can I do this? for example: FolderA contains these subfolders
180705-France, 180705-Germany, refdata
I want to list and count only the folders under folder A that start with a numeric string. In this case, the list should return '180705-France' and '180705-Germany', and a length(dirlist) should return 2.
something like,
pathn =['D:\FolderA'];
list= dir([pathn '\1*']);
len =length(list);
would work, but I need it to work for any folder whose name begins with numbers 0-9.
I tried using regexp but couldn't figure out how to get it to work. If I figure it out, I'll post it here, but I'm sure someone already knows how to do this....thanks.
  댓글 수: 2
Stephen23
Stephen23 2018년 8월 17일
편집: Stephen23 2018년 8월 17일
Note that these square brackets do nothing at all:
pathn =['D:\FolderA'];
Square brackets are a concatenation operator, and that code is not concatenating anything together (the char vector is already a char vector). All that is needed is:
pathn = 'D:\FolderA';
Jorge Rivé
Jorge Rivé 2018년 8월 17일
yes, thanks --I know...I started writing the question one way and then simplified it to avoid confusion. The path was a concatenation of strings before I changed it....

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

채택된 답변

Paolo
Paolo 2018년 8월 16일
편집: Paolo 2018년 8월 16일
You can work around it with a dos command:
[status,cmdout] = dos("dir *")
list = regexp(cmdout,'\d{6}-[A-Za-z]+','match');
len =length(list);
or alternatively:
s = dir;
list =regexp({s.name},'\d{6}-[A-Za-z]+','match');
len = length(find(~cellfun(@isempty,list)));
  댓글 수: 1
Jorge Rivé
Jorge Rivé 2018년 8월 17일
편집: Jorge Rivé 2018년 8월 17일
thank you, the dos command version worked, but the alternative provided does not. list returns an array of empty cells.... Your first solution does the trick for me -- Thanks.

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

추가 답변 (1개)

Fangjun Jiang
Fangjun Jiang 2018년 8월 16일
dir() does not have the regexp option. I can think of this way
a=dir;
b=char({a([a.isdir]).name});
len=sum(isstrprop(b(:,1),'digit'))

카테고리

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