コード例 #1
0
ファイル: AppUrl.cs プロジェクト: Acmion/CommunicatorCMS-Core
 public static bool IsFile(string url)
 {
     return(AppFile.Exists(ConvertToAppPath(url)));
 }
コード例 #2
0
ファイル: AppUrl.cs プロジェクト: Acmion/CommunicatorCMS-Core
        public static bool Exists(string url)
        {
            var appPath = ConvertToAppPath(url);

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