Freddie
-1
Q:

unity create folder only if not exists

string path1 = @"C:\temp\";
string path2 = Path.Combine(path1, "temp1");

// Create directory temp1 if it doesn't exist
Directory.CreateDirectory(path2);
5
 using System.IO;
  //check if directory doesn't exit
 if(!Directory.Exists(directoryPath))
 {    
     //if it doesn't, create it
     Directory.CreateDirectory(directoryPath);
  }
1

New to Communities?

Join the community