Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个问题,有时我需要在星巴克工作。
当我上传 PHP 文件时,连接速度很慢,所以如果用户在我上传文件时尝试访问 PHP 文件,他们当然会出现致命错误。
这对我繁忙的网站来说非常不方便。有没有一种方法可以在上传文件时将其上传到临时位置,然后服务器在完成后将其移动到真实位置?
您可以让 WinSCP 将文件上传到临时文件,并在传输完成后自动重命名。
在首选项中,转到传输 > 耐久性选项卡,然后在启用...传输到临时文件名框中选择所有文件。
详情参考: https ://winscp.net/eng/docs/ui_pref_resume
为什么不直接将文件上传到服务器上的临时文件夹并在服务器上执行命令以删除旧文件并移动新文件?它应该在服务器上以足够快的速度移动文件,以消除用户看到的任何打嗝,除非他们的时间恰到好处。