[PHP] internal operation

2006-05-10 Thread Luke Cole
Do the file system and directory functions, perform the file system command relative to your OS. e.g. does the internal code of the function: rename(oldname, newname); do exactly (in unix file systems): `mv oldname newname` do exactly (in windows file systems): `ren oldname newname` If not,

Re: [PHP] internal operation

2006-05-10 Thread Richard Lynch
On Wed, May 10, 2006 4:11 am, Luke Cole wrote: Do the file system and directory functions, perform the file system command relative to your OS. e.g. does the internal code of the function: rename(oldname, newname); do exactly (in unix file systems): `mv oldname newname` do exactly (in

Re: [PHP] internal operation

2006-05-10 Thread Rory Browne
www.php.net/streams On 5/10/06, Richard Lynch [EMAIL PROTECTED] wrote: On Wed, May 10, 2006 4:11 am, Luke Cole wrote: Do the file system and directory functions, perform the file system command relative to your OS. e.g. does the internal code of the function: rename(oldname, newname);