Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i am trying to copy files from one folder to another with desired names. For coping i used

copy($oldfile, $newfile);

one more thing old folder files should be deleted also.how can i rename them

share|improve this question
2  
0% accept rate see meta.stackoverflow.com/questions/16721/… for the main time ... i"ll pass – Baba Dec 17 '12 at 12:36

closed as not a real question by DaveRandom, Jocelyn, Ed Heal, Explosion Pills, Ryan Dec 17 '12 at 18:03

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Use rename: Attempts to rename oldname to newname, moving it between directories if necessary. If newname exists, it will be overwritten.

rename($oldfile, $newfile);

http://php.net/manual/en/function.rename.php

share|improve this answer
but i don't know the old file name – user1702477 Dec 17 '12 at 12:39
@user1702477 you must be joking... – Jimmy Kane Dec 17 '12 at 12:42
@JimmyKane If only that were true... – DaveRandom Dec 17 '12 at 12:43
i know the folder where files are uploaded its dynamically uploaded by users.so i dont know the files name.multiple images are uploading dynamically by jquery ..but i need to save the image with auto increment id . – user1702477 Dec 17 '12 at 12:45

Not the answer you're looking for? Browse other questions tagged or ask your own question.