You might want to add images to the resource file so that you can work directly with the image without writing code to search for the file.
In any case, you can get the path to the application:
string appFolder = Path.GetDirectoryName(Assembly.GetExecutingAssembly().CodeBase);
And then you can use methods from the Path class, for example Path.Combine to link to a folder.
source share