Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: uploading a file with the same name

by amphiplex (Monk)
on Jul 24, 2002 at 13:49 UTC ( [id://184834]=note: print w/replies, xml ) Need Help??


in reply to uploading a file with the same name

This will not do what you want.
suppose you want to upload the file foo and the file already exists. Your code would check for foo0, which propably does not exist, and overwrite foo.

Besides, you append th number, giving you: foo0,foo01,foo012,....
And to concatenate strings you should use ".".

One way to do it:
$num=""; while(-e "$Data/$category/$imagename$num"){ $num++; } $imagename = $imagename.$num;

---- amphiplex

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://184834]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (3)
As of 2024-04-26 07:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found