File upload Issue
While uploading file with file name having maximum length
ex:- 1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111.jpg
using coldfusion, uploaded file in server gets corrupted
I am using cf8 and windows xp
code set is given below
---------------------------------------------------------------------------
<form action="" method="post" enctype="multipart/form-data">
<input type="file" name="img">
<input type="submit" name="submit" value="submit">
</form
<cfif ISDefined('Form.img')>
<cffile
action="upload"
destination="D:\thumb"
filefield="img"
nameconflict="makeunique"/>
<cfdump var="#cffile#">
<cfdump var="#len(cffile.CLIENTFILE)#">
</cfif>
------------------------------------------------------------------------
Please help?
