Argentini.Halide.H3Storage.FileExists C# (CSharp) Method

FileExists() public static method

Determines if a file exists at a given web path.
public static FileExists ( string path ) : System.Boolean
path string Path to a file (e.g. "/downloads/file.jpg").
return System.Boolean
        public static Boolean FileExists(string path)
        {
            return (System.IO.File.Exists(H3Storage.MapPath(path)));
        }