寫程式,不只有一種方式,每個人的風格不同,你,有專屬的方式!
using System.IO;
string folderPath = @"C:\\Users\\user\\OneDrive\\桌面\\新檔案"; // 如果資料夾不存在,則新增資料夾 if (!Directory.Exists(folderPath)) { Directory.CreateDirectory(folderPath); Console.WriteLine("資料夾已新增"); } else { Console.WriteLine("資料夾已存在"); } }
沒有留言:
張貼留言