public void WriteAllText(string path, string content)
 {
     WrittenFiles.Add(path);
     WrittenText = content;
 }
 public void WriteAllBytes(string path, byte[] bytes)
 {
     WrittenFiles.Add(path);
     WrittenBytes = bytes;
 }