如何查明文件是否被更改
我需要开发一个文件同步应用程序,将我的文件从本地计算机同步到远程服务器。我的本地操作系统是Windows,远程操作系统是Unix。我可以通过 FTP 访问远程文件。
文件的“修改日期”是否足以找出我的计算机上已更改的文件?
I need to develop a file synchronization application to sync my files from my local computer to my remote server. My local OS is windows and remote OS is Unix. I can access files on the remote on FTP.
Is file's 'modified date' enough to find out files that has been changed on my computer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许吧,但为什么要重新发明轮子呢?
Unison、lftp(仅适用于 FTP)或 rsync 不久前已经解决了这些问题。
Maybe, but why reinvent the wheel?
Unison, lftp (for FTP only) or rsync have solved these issues awhile ago.
您可能想尝试
rsync
,它随大多数 Linux 发行版一起提供,并且似乎有一个 Windows 版本: http://greenmice.info/en/node/ 34You might want to try
rsync
, which comes with most Linux distributions, and for which there seems to be a Windows version: http://greenmice.info/en/node/34