Pulling images from a sub-folder

How do you get an item from a sub-folder off the folder where the application resides? e.g. to set a canvas backdrop to an image in
the “images/” folder like “Images/234.png”? I can get a picture/image using Picture.Open if the file is in the current working directory but not
if I in any way pass the “path” info.

Dim picFile as FolderItem = GetFolderItem(“CSE.png”) works but
Dim picFile as FolderItem = GetFolderitem(“images/CSE.png”) fails.

B

Thanks. That’s what I was looking towards.