创建文件夹

  1. /// <summary>   
  2. /// 创建文件夹   
  3. /// </summary>   
  4. /// <param name="Path"></param>   
  5. public void FolderCreate(string Path)   
  6. {   
  7.     // 判断目标目录是否存在如果不存在则新建之   
  8.     if (!Directory.Exists(Path))   
  9.         Directory.CreateDirectory(Path);   
  10. }  

你可能感兴趣的:(创建文件夹)