public string ReadAllText(FileStore.File file) { var s = System.IO.File.ReadAllText( System.IO.Path.Combine(file.Directory.SystemPath, file.Name), Encoding); return(s); }
public void SaveAllText(FileStore.File file, string text) { System.IO.File.WriteAllText( System.IO.Path.Combine(file.Directory.SystemPath, file.Name), text, Encoding); }