Exemplo n.º 1
0
 public static bool IsDirectory(string url)
 {
     return(AppDirectory.Exists(ConvertToAppPath(url)));
 }
Exemplo n.º 2
0
        public static bool Exists(string url)
        {
            var appPath = ConvertToAppPath(url);

            return(AppFile.Exists(appPath) || AppDirectory.Exists(appPath));
        }