服务器和 iPhone 客户端之间的文件系统同步
我的服务器使用文件系统(我的意思是文件夹结构)维护内容。我的 iPhone 客户端应用程序包中也维护了相同的文件夹结构。
现在,如果我的服务器文件系统发生更改(添加、删除、更新层次结构中某个文件夹中的文件),我需要在客户端相应地更新文件系统。这意味着我需要服务器和客户端遵循一个协议。
任何人都可以建议如何做到这一点吗?
-- 谢谢和问候, 乌苏夫
I have my server maintaining the content with a file-system(i mean folder structure). The same folder structure is also maintained in my iPhone client application bundle too.
Now if there is a change in my server file system(Add,Delete,Update of a file in some folder in the hierarchy) i need to update the file system accordingly at the client. This means that i need a protocol to be followed b/w the server and the client.
Can any one suggest how can this be done?
--
Thanks and Regards,
U'suf
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,没有简单的方法。我一直在寻找 rsync 的等效项,但还没有找到。
就我而言,我手动遍历树,询问服务器在特定日期之后的差异,并且我记得上次成功同步的日期。
不漂亮。可能会花很多时间想出一些复杂的东西。
From what I can tell, there is no easy way. I was looking for an rsync equivalent, but I haven't found one.
In my case, I'm manually walking the tree asking the server for differences after a certain date and I remember the last successful sync date.
Not pretty. Could spend lots of time coming up with something sophisticated.