RE: [PHP] Moving Files From One Directory To Another

2002-11-11 Thread John W. Holmes
> Which built-in PHP functions would I use to move a file from one directory > into another? I'm thinking that this requires more than one function to > achieve what I want. > > What approaches should I take? Do I need to copy the file into a temporary > directory first and then move it to the des

Re: [PHP] Moving Files From One Directory To Another

2002-11-11 Thread Jason Sheets
Hello Nilaab, It sounds like you are looking for the rename() function. This function renames (also known as move) a file. You can find out more about rename() at http://us.php.net/manual/en/function.rename.php Jason On Mon, 2002-11-11 at 21:42, @ Nilaab wrote: > Which built-in PHP functions w