Code:
<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"/>
I used this code for uploading. It's worked fine for me except with large file name. Upload occur but i can't open the uploaded file with large file name.
Comment