12 lines
303 B
C#
Raw Normal View History

2025-03-11 15:30:07 +08:00
namespace Packages.Rider.Editor.ProjectGeneration
{
internal interface IFileIO
{
bool Exists(string fileName);
string ReadAllText(string fileName);
void WriteAllText(string path, string content);
string EscapedRelativePathFor(string file, string projectDirectory);
}
}