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