Answers for "c# create empty file if not exists"

C#
0

c# create empty file if not exists

string temp = AppDomain.CurrentDomain.BaseDirectory;
			string sPath = Path.Combine(temp, "file.txt");

bool fileExist = File.Exists(sPath);
        if (fileExist) {
            Console.WriteLine("File exists.");
        }
        else {
          using (File.Create(sPath)) ;
            Console.WriteLine("File does not exist.");
        }
Posted by: Guest on September-18-2021

Code answers related to "c# create empty file if not exists"

C# Answers by Framework

Browse Popular Code Answers by Language