[ASP.NET] C# 點擊按鈕來下載檔案 - download file @ 黃昏的甘蔗 :: 隨意窩 Xuite日誌
public bool xDownload(string xFile, string out_file) //xFile 路徑 + 檔案, 設定另存的檔名 { if (File.Exists(xFile)) { try { FileInfo xpath_file = new FileInfo (xFile); // 要 using System.IO; // 將傳入的檔名以 FileInfo 來進行解析(只以字串無法 ......