Answers for "c# does file.exist work with folders"

C#
12

c# file exist

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

c# file exist

File.Exists(path)
Posted by: Guest on March-22-2022

C# Answers by Framework

Browse Popular Code Answers by Language