C#建立檔案並往檔案中寫入資訊
阿新 • • 發佈:2019-01-05
string filepath = Server.MapPath("~/Upfile") + "\\"; //要上傳的資料夾的路徑
if (!Directory.Exists(filepath)) //不存在資料夾,建立
{
Directory.CreateDirectory(filepath); //建立新的資料夾
}
Random myrdn = new Random(); //產生隨機數
//檔名稱是使用者名稱_時間隨機數,放在filepath資料夾中
string filename = filepath + "\\" + user + "_" + DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString() + DateTime.Now.Day.ToString() + DateTime.Now.Hour.ToString() + DateTime.Now.Minute.ToString() + DateTime.Now.Second.ToString() + myrdn.Next(10000).ToString() + ".txt";
if (!Directory.Exists(filepath)) //不存在資料夾,建立
{
Directory.CreateDirectory(filepath); //建立新的資料夾
}
Random myrdn = new Random(); //產生隨機數
//檔名稱是使用者名稱_時間隨機數,放在filepath資料夾中
string filename = filepath + "\\" + user + "_" + DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString() + DateTime.Now.Day.ToString() + DateTime.Now.Hour.ToString() + DateTime.Now.Minute.ToString() + DateTime.Now.Second.ToString() + myrdn.Next(10000).ToString() + ".txt";