Quote:
Originally Posted by Mark Sir Link
dunno if this is the right spot for this request since it's a server request, but can we get a rename file function on the serverside?
|
This should do what you want:
PHP Code:
function renamefile(src, newname) {
movefile(src, extractfilepath(src) @ newname);
}