Exemple #1
0
 public static void CreateFile(string path, string content)
 {
     byte[] contentBytes = Comm.Str2Bytes(content);
     CreateFile(path, contentBytes);
 }
Exemple #2
0
 public static string ReadFile(string path)
 {
     byte[] contentBytes = ReadFileRaw(path);
     return(Comm.Bytes2Str(contentBytes));
 }