Info

This question is closed. Reopen it to edit or answer.

How to organize similarly named files: Round 2

1 view (last 30 days)
Frank
Frank on 20 May 2011
Closed: MATLAB Answer Bot on 20 Aug 2021
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 Comment
Andy
Andy on 20 May 2011
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.

Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!