public static void Main()
var fileName = "C:\\Resources\\directory\\551d2872c49d4959b449f4d78fd30224.DotNetFiddle.Web.LocalResources\\Sandbox\\56126193-fb63-45e7-bd6b-67f492968efb\\autok.txt";
var s = ReadAllText(fileName);
public static void WriteFile(string path)
File.WriteAllText(path, ".NET Fiddle is AWESOME!!!");
public static string ReadAllText(string path)
return File.ReadAllText(path);