IFileIO.cs 292 B

123456789101112
  1. namespace Packages.Rider.Editor.ProjectGeneration
  2. {
  3. internal interface IFileIO
  4. {
  5. bool Exists(string fileName);
  6. string ReadAllText(string fileName);
  7. void WriteAllText(string path, string content);
  8. string EscapedRelativePathFor(string file, string projectDirectory);
  9. }
  10. }