Argentini.Halide.H3Storage.FileExists C# (CSharp) 메소드

FileExists() 공개 정적인 메소드

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").
리턴 System.Boolean
        public static Boolean FileExists(string path)
        {
            return (System.IO.File.Exists(H3Storage.MapPath(path)));
        }