DaniWeb IT Discussion Community

DaniWeb IT Discussion Community (http://www.daniweb.com/forums/index.php)
-   ColdFusion (http://www.daniweb.com/forums/forum19.html)
-   -   Renaming FTP upload (http://www.daniweb.com/forums/thread23506.html)

cfnut May 13th, 2005 11:32 am
Renaming FTP upload
 
I would like to rename the users file that they upload to my ftp. I want to add the CustId to the begging of the file name. For example it they select a file called test I want it to be named 223Test in my upload folder on my ftp site.

I uploaded a file called uptest and when my code ran I had two files in my upload folder. One was called uptest and the other was called acff97. So instead of renaming the file it just created a new one. I want to rename the file so that its the custId. Any suggestions?

<cf_fileupload
userid = "test"
password = "test"
filefield = "form.filename"
destination = "/test_com/www/upload"
NameConflict = "MakeUnique">


<cfx_filemanager action ="rename"
userid = "test"
password = "test"
filefield = "form.filename"
source = "/test_com/www/upload/form.filename"
destination = "/test_com/www/upload/#Session.CustId#"
>

bkendall Jul 6th, 2005 9:17 am
Re: Renaming FTP upload
 
the "MAKEUNIQUE" option of <CFFILE> I believe just generates a random name so that there is not a naming conflict. I think you would have to use some objext variables to add the prefix you want. I have not done this in cf but I know that similar actions can be performed in ASP.


All times are GMT -4. The time now is 10:05 am.

Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2009 DaniWeb® LLC