Exemple #1
0
        public CMPFileManagerProxy(string folderPathString)
        {
            if (string.IsNullOrEmpty(folderPathString) == true)
            {
                return;
            }

            _fileManager = new CMPFileManager(folderPathString);
        }
Exemple #2
0
        public static bool PrepareFoldePath(string folderPathString)
        {
            if (string.IsNullOrEmpty(folderPathString) == true)
            {
                return(false);
            }

            var couldPrepare = CMPFileManager.PrepareFoldePath(folderPathString);

            return(couldPrepare);
        }