我在PHP中构建了一个FTP类,它具有从FTP服务器下载文件的功能。
到目前为止这是功能
public function downloadData($serverFile, $localPath)
{
$fileName = basename($serverFile);
$file = $localPath.$fileName;
$download = false;
if(!file_exists($file))
{
// try to download $server_file and save to $local_file
if(ftp_get($this->connection_id, $file, $serverFile, FTP_BINARY)) {
$download = true;
}
}
return $download;
}
基本上它工作正常,但在保存数据时,文件的“最后更改日期”设置为当前日期/时间。我想以某种方式阻止这种情况,因为原始日期对我的需求很重要。
有没有办法保留文件的原始修改日期?
修改文件时,无法阻止系统更新修改日期。但是,这很大程度上取决于你为什么需要创建日期?
不幸的是,如果您在Linux / Unix上运行,则无法访问创建日期信息,因为只存储了上次修改日期。但是对于Windows,您可以使用filectime,它将返回创建时间