コード例 #1
0
ファイル: QTUtility2.cs プロジェクト: sworduc/qttabbar
        public static bool IsExecutable(string ext)
        {
            const string EXTS = ".COM|.EXE|.BAT|.CMD|.VBS|.VBE|.JS|.JSE|.WSF|.WSH|.MSC|.LNK";

            return(ext != null && ext.Length > 2 && -1 != EXTS.IndexOf(ext.ToUpper()));
        }
コード例 #2
0
 protected override List <string> readFilePaths()
 {
     return(Directory.GetFiles(fileLocation, "*.*", SearchOption.AllDirectories)
            .Where(s => EXTS.Any(e => s.EndsWith(e))).ToList());
 }