程式中取得各種路徑

程式中取得各種路徑

//ex:
Environment.GetFolderPath(Environment.SpecialFolder.Desktop);//取得桌面路徑
Environment.GetFolderPath(Environment.SpecialFolder.Startup);//取得 OS 啟動資料夾路徑

//取得執行檔位置(需加入system.windows.form參考)
System.IO.Path.GetDirectoryName(System.Windows.Forms.Application.ExecutablePath);

//取得目前檔案指定的儲存路徑, 程式啟動時預設為該程式所在目錄
System.Environment.CurrentDirectory

//取得 system32 路徑
System.Environment.SystemDirectory