Error using copyfile No matching files were found.

조회 수: 17 (최근 30일)
Dung Vu
Dung Vu 2019년 11월 15일
답변: Dung Vu 2019년 11월 15일
Dear Matlab users,
I'm very new in Matlab, what am I doing wrong? The tif-files are in the folder TimePoint_1 ... Can anyone help me out please?
% copy all tif files without thumb in filename to folder B
path1 ='C:\Users\rename_microscope_files\movie\2019-08-28\32534\TimePoint_1'
dest = 'C:\Users\rename_microscope_files\image_sorted'
source =fullfile(path1,'*.tif');
myfile= dir(source);
% loop over all files in the folder
for i = 1:numel(myfile)
idx = strfind(myfile(i).name,'_thumb');
if ~isempty(idx)
%do nothing
else
%copy to folder image_sorted
copyfile(myfile(i).name,dest)
end
end
Error using copyfile. No matching files were found.

채택된 답변

Guillaume
Guillaume 2019년 11월 15일
I'd replace
idx = strfind(myfile(i).name,'_thumb');
if ~isempty(idx)
%do nothing
else
by the simpler
if ~contains(myfile(i).name, '_thumb')
which does the required work inside the if.
The problem is that you only pass the filename of the source to copyfile so it looks for it in the current directory, not in path1. The fix is simple:
if ~contains(myfile(i).name, '_thumb')
copyfile(fullfile(path1, myfile(i).name), dest);
end

추가 답변 (1개)

Dung Vu
Dung Vu 2019년 11월 15일
Thank you very much, it's working!

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by