我在創建目錄之前正在使用cffile時遇到問題。我正在使用cffileupload標記,並且我的url屬性是具有以下代碼的頁面。基本上下面的代碼創建一個新目錄並將所有圖像上傳到該目錄。但是,它在第二次上傳時失敗,並且在cffileupload flash對象中出現500錯誤。但是,如果我對目錄路徑進行硬編碼,它們都會正常上傳。任何人都知道我爲什麼會遇到這個問題?將文件上傳到Coldfusion中新創建的目錄
<!--- User will upload all the images to a temp directory based on date and time --->
<cfset uploadFolderPath = "C:\ColdFusion9\wwwroot\MyApplication\uploads\" />
<cfset date=DateFormat(Now(),'mm-dd-yyyy_') />
<cfset time=TimeFormat(Now(),'hh-mm-ss') />
<cfset newFolderName = "upload_" & date & time />
<cfset newFolder = uploadFolderPath & newFolderName />
<cfdirectory action = "create" directory="#newFolder#" />
<cffile action="uploadall" destination="#newFolder#" nameconflict="makeunique" />