Answers for "how to check if file path exists in c# using try catch"

C#
1

how to check file path is valid in c#

string path="D://files"
if (!Directory.Exists(path))
                {
                    MessageBox.Show("Path is not valid please check if this path exists or not","Path Not Found", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
Posted by: Guest on March-08-2021
1

check if file exist c#

if(File.Exists(@"C:file.exe"))
{
    Console.WriteLine("This file exists!");
}
else
{
  Console.WriteLine("This file does not exist!");
}
Posted by: Guest on September-29-2021

Code answers related to "how to check if file path exists in c# using try catch"

C# Answers by Framework

Browse Popular Code Answers by Language