Info

此问题已关闭。 请重新打开它进行编辑或回答。

How to organize similarly named files: Round 2

1 次查看(过去 30 天)
Frank
Frank 2011-5-20
关闭: MATLAB Answer Bot 2021-8-20
Hello!
Got kinda lost, I'm not sure once again. So far I've written the script that tells MatLab to read all the images I have in a folder, but I'm not quite sure how to make it recognize the small differences in the file name and move it into a specified folder.
Thanks
-Frank
Code:
%Splits CH1 in the same folder with CH2
fprintf('Select Directory \n')
A = uigetdir();
cd(A)
mkdir('Channel 1')
mkdir('Channel 2')
myFolder = uigetdir();
filePattern = fullfile(myFolder, '*.tif');
tifFiles = dir(filePattern);
for k = 1:length(tifFiles)
baseFileName = tifFiles(k).name;
fullFileName = fullfile(myFolder, baseFileName);
fprintf(1, 'Now reading %s\n', fullFileName);
imageArray = imread(fullFileName);
for m = 1:length(tifFiles)
n = dir *LineScan-2010_12_08-005_Cycle001_CurrentSettings_Ch1_*.tif
movefile(n , 'C:\Users\xuf\Desktop\LineScan-
2010_12_08-005\Target\Channel 1')
end
movefile('*.tif', 'C:\Users\xuf\Desktop\LineScan-2010_12_08-005\Target\Channel 2')
imshow(imageArray);
drawnow;
end
  1 个评论
Andy
Andy 2011-5-20
First, it is generally recommended that you not accept an answer until you are fully satisfied with it. Second, it is also generally recommended that you don't duplicate your questions. You could have instead added this comment to your previous question without duplicating.

回答(0 个)

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by