Apachai.StaticContentModule.ValidFile C# (CSharp) 메소드

ValidFile() 개인적인 메소드

private ValidFile ( string path ) : bool
path string
리턴 bool
        bool ValidFile(string path)
        {
            try {
                string fullPath = Path.GetFullPath (path);
                return fullPath.StartsWith (rootedPath);
            } catch {
                return false;
            }
        }