public string ReadAllText(RelativeFilePath filePath)
 {
     return(File.ReadAllText(GetFullyQualifiedPath(filePath).FullName));
 }
 public void WriteAllText(RelativeFilePath path, string text)
 {
     File.WriteAllText(GetFullyQualifiedPath(path).FullName, text);
 }
 public bool FileExists(RelativeFilePath filePath)
 {
     return(GetFullyQualifiedPath(filePath).Exists);
 }