Answers for "how to check a file exists in c#"

C#
11

c# file exist

if (File.Exists("file.exe"))
{
	//file exist
} else {
  //does not exist
}
Posted by: Guest on March-02-2020

Code answers related to "how to check a file exists in c#"

C# Answers by Framework

Browse Popular Code Answers by Language