From: Mathew Thomas on
Hello,

Is there any way to check if a particular image (tif) is present in a folder. I know the directory of the folder and I know the image name.

Thank you,

Matt
From: ImageAnalyst on
Use the exist() function

if exist(fullFileName, 'file')
% It exists
else
% it doesn't exist
end