Preserve image created date when uploading to FTP(上传到 FTP 时保留图像创建日期)
问题描述
所以我正在为我的家人创建一个网站,我们可以在其中上传我们的图像并查看它们,但该网站的一个重要功能是按日期排序,以便例如当我的阿姨在我母亲的生日和我也拍了照片,我们上传它们将添加到同一个相册等的图像.
我意识到通过浏览器上传时无法保留日期.所以我会做一个只用于上传图片的小程序.我有一个 FTP 服务器正在运行,但是当我上传图像时,日期将更改为当前日期时间.我找到了为什么这样做的答案 所以现在我正在寻找一种在上传到 FTP 时保留日期的方法.
以下是我的一些想法:
- 如果程序将文件添加到 zip 文件并上传该 zip 文件,它们将保留日期,但这意味着我必须在服务器上安装一些东西来解压 zip.
- 上传图片后,程序会从原始图片中提取创建日期,并将其添加到一个文本文件中,该文件也会上传,但这需要服务器上的程序更改上传的图片创建日期.李>
- 也许我上传了图片,然后从客户端更改了上传图片的创建日期?
- 也许我上传了图片,然后从客户端更改了上传图片的创建日期?
在 FTP 协议中,使用 MFMT
或 MDTM
命令更新文件修改时间戳,或 MFCT
更新文件创建时间戳,具体取决于哪个您的 FTP 服务器支持的这些.
实际上没有一个是标准化的.
MFMT
和MFCT
在此起草:
https://datatracker.ietf.org/doc/html/草稿-somers-ftp-mfxx-04MDTM
在 RFC 3659 中定义为检索文件修改时间戳,使用MDTM 文件名
语法.但许多 FTP 服务器也支持替代(非标准)语法MDTM 文件名时间戳
(即与提议的MFMT
相同)来更新修改时间戳.
尽管 .NET 框架中的本机 FTP 实现(FtpWebRequest
或 WebClient
包装器)不支持其中任何一个.
您必须使用第 3 方库.
例如,WinSCP .NET 程序集会自动为任何上传(或下载),无需任何额外代码.
上传文件的简单示例代码(隐式保留修改时间戳):
//设置会话选项SessionOptions sessionOptions = 新的 SessionOptions{协议 = Protocol.Ftp,主机名 = example.com",用户名 = 用户",密码=我的密码",};使用(会话会话 = 新会话()){//连接session.Open(sessionOptions);//上传session.PutFiles(@"d: ouploadimage.jpg", "/home/user/").Check();}
有关详细信息,请参阅 Session.PutFiles
.p>
最新版本的 WinSCP GUI FTP 客户端(5.9 及更高版本)甚至可以生成 C# 代码给你.
(我是 WinSCP 的作者)
So I am making a website for my family, where we can upload our images and view them, but an important feature of the website is to sort by date so that when for example my aunt have taken pictures at my mothers birthday and I also have taken pictures and we upload the images they will be added to the same album etc.
I've realized that it is not possible to preserve the date, when uploading through a browser. So I will make a small program which is only used for upload pictures. I have an FTP server running but when ever I upload images the date will change to current datetime. I have found the answer to why it does that so now I am looking for a way to preserve the date while uploading to FTP.
Here's some ideas I've had:
- If the program adds the files to a zip file and upload that zip file they will preserve the date, but that means I would have to have something on the server that unpacks the zips.
- When the images gets uploaded the program extracts the created date from the original image and adds it to a text file which it also uploads, but that would again require a program on the server which changes the uploaded images created date.
- Maybe I upload the images and thereafter change the uploaded images created date from the client?
- Maybe I upload the images and thereafter change the uploaded images created date from the client?
In FTP protocol, use MFMT
or MDTM
command to update file modification timestamp, or MFCT
to update file creation timestamp, depending on which of these your FTP server supports.
Actually none of them is standardized.
- The
MFMT
andMFCT
are drafted here:
https://datatracker.ietf.org/doc/html/draft-somers-ftp-mfxx-04 - The
MDTM
is defined in RFC 3659 to retrieve file modification timestamp, usingMDTM filename
syntax. But many FTP servers support an alternative (non-standard) syntaxMDTM filename timestamp
(i.e. the same as proposedMFMT
) to update the modification timestamp too.
Though the native FTP implementation in .NET framework (the FtpWebRequest
or the WebClient
wrapper), does not support any of these.
You have to use a 3rd party library.
For example the WinSCP .NET assembly preserves the modification timestamp automatically for any upload (or download) without any additional code.
A simple example code to upload a file (implicitly preserving the modification timestamp):
// Setup session options
SessionOptions sessionOptions = new SessionOptions
{
Protocol = Protocol.Ftp,
HostName = "example.com",
UserName = "user",
Password = "mypassword",
};
using (Session session = new Session())
{
// Connect
session.Open(sessionOptions);
// Upload
session.PutFiles(@"d: ouploadimage.jpg", "/home/user/").Check();
}
For details, see Session.PutFiles
.
The latest version of WinSCP GUI FTP client (5.9 and newer) can even generate the C# code for you.
(I'm the author of WinSCP)
这篇关于上传到 FTP 时保留图像创建日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:上传到 FTP 时保留图像创建日期
基础教程推荐
- 将 XML 转换为通用列表 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01