필터 지우기
필터 지우기

copyfile error 'No matching files were found'

조회 수: 6 (최근 30일)
Joe_Z
Joe_Z 2019년 8월 29일
댓글: Walter Roberson 2019년 8월 30일
I am having a problem with copyfile giving the error 'no matching files were found'. I appreciate this is a commonly asked question but I just can't seem to find an answer that works for my code
The code is:
pathin =['D:\data'];
pathout =['D:\VB_data\stc'];
subjects = ["example1" "example2" "example3"];
for subj = subjects
source= strcat(pathin,'/',subj,'/',subj,'/','*RS_HF','/*.dcm')
target=strcat(pathout,'/', subj)
copyfile(source, target)
end
The paths are correct, with dir(source) giving the list of files I want to copy and exist(target) > 0.
Thanks
  댓글 수: 2
Jos (10584)
Jos (10584) 2019년 8월 30일
You appear to mix / and \ symbols to create a path ...
I suggest you use FULLFILE rather than strcat to concatenate folders into a full path to a file.
Walter Roberson
Walter Roberson 2019년 8월 30일
Is subjects a string array or is it a cell array of character vectors? If it is a cell array then you would be building a cell array and copyfile cannot handle a cell array.

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

답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by