Answers for "file create c# file does not exist"

C#
0

c# if file doesn't exist create it

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 "file create c# file does not exist"

C# Answers by Framework

Browse Popular Code Answers by Language