Hello,
I want to transfer a file from a http-server to another.
Well, that goes fine like this:
$upload = ftp_put($conn_i d, "$destination_f ile", "$source_fi le",
FTP_BINARY);
But I want - before the transfer - to know wether the $source_file exists.
More, I want to know and keep its original filetime.
I tried with file_exists. Don't work. So don't work fileatime etc. either.
How ?
TIA
Hanjo
--
Software & Seminar-Kontor Hans-Joachim Grüßner
Glasholz
D-24369 Waabs
I want to transfer a file from a http-server to another.
Well, that goes fine like this:
$upload = ftp_put($conn_i d, "$destination_f ile", "$source_fi le",
FTP_BINARY);
But I want - before the transfer - to know wether the $source_file exists.
More, I want to know and keep its original filetime.
I tried with file_exists. Don't work. So don't work fileatime etc. either.
How ?
TIA
Hanjo
--
Software & Seminar-Kontor Hans-Joachim Grüßner
Glasholz
D-24369 Waabs
Comment