MATLAB: Display image in subfolder of current folder

hi,
I to display an image which is in one of the sub-folders of the current directory. I know the name of the file. how will i know which sub-folder it is in and how will i display in it???
thanking you in advance.

Best Answer

Preethi, try this:
% Specify the top level folder.
topLevelFolder = 'C:\Users\Mark\Pictures';
% Add this folder and all of its subfolders to the search path.
addpath(genpath(topLevelFolder));
% Define the base file name of the file you are looking for.
baseFileName = 'anagrams.png';
% Display it. It will find it on the search path if it's there.
imshow(baseFileName);