Answers for "how to check if file exists in current directory c#"

C#
20

c# check file exists

if (File.Exists(@"D:\myfile.txt")) {
   Console.WriteLine("The file exists.");
}
Posted by: Guest on February-03-2020

Code answers related to "how to check if file exists in current directory c#"

C# Answers by Framework

Browse Popular Code Answers by Language