c# 新建文件夹

 例如待新建文件夹为:"C:\\Users\\Administrator\\Desktop\\新建文件夹\\第十一篇 施工组织计划"

        /// 
        /// 新建文件夹
        /// 
        /// 文件夹全路径
        public static void CreateFolder(string folderPath)
        {
            if (Directory.Exists(folderPath)) return;
            Directory.CreateDirectory(folderPath);
        }

 

你可能感兴趣的:(C#)