check if file path exists c# before trying to open it code example
Example: c# file exist
if (File.Exists("file.exe"))
{
//file exist
} else {
//does not exist
}
if (File.Exists("file.exe"))
{
//file exist
} else {
//does not exist
}