コード例 #1
0
        private static string[] GetFiles(string dirPath, string fileName)
        {
            if (!DirectoryUtils.Exists(dirPath))
            {
                return(new string[0]);
            }

            string filePatern = fileName + ".split*";

            return(DirectoryUtils.GetFiles(dirPath, filePatern));
        }