Exemplo n.º 1
0
 public string GetFileContents(string fileName)
 {
     return(IO.File.ReadAllText(StaticServer.MapPath("~/bam/less/" + fileName)));
 }
Exemplo n.º 2
0
 public bool DoesFileExist(string fileName)
 {
     return(IO.File.Exists(StaticServer.MapPath("~/bam/less/" + fileName)));
 }
Exemplo n.º 3
0
 public byte[] GetBinaryFileContents(string fileName)
 {
     return(IO.File.ReadAllBytes(StaticServer.MapPath("~/bam/less/" + fileName)));
 }