我從dateTime獲取當前月份和年份並將它傳遞給字符串。原因是,在我的目錄中必須有當前年份和月份的文件夾 - 這是爲了視頻上傳數量。這是我目前有:本月的單詞而不是int
string month = Convert.ToString(DateTime.Today.Month);
string Year = Convert.ToString(DateTime.Today.Year);
UploadStatusLabel.Text = Year + "\\" + month;
//New Directory Name in string variable
string NewDirectory = Server.MapPath("~\\uploads\\" + Year + "\\" + month);
//Calling the function to create new directory
CreateDirectoryIfNotExists(NewDirectory);
這一切工作,但問題是,是,一個月顯示,在5這是正確的,但我需要它來顯示可能。我該怎麼做呢?
使用「月」和「年」作爲變量名是要給我的蕁麻疹。 – dnord
@ dnord - 在我在這裏添加代碼後,它被更改爲dtYear和dtMonth .... – Kerieks