从 iOS 读取 Windows 共享文件夹
我想开发一个可以从 Windows 桌面上共享的文件夹中读取内容的应用程序。
我发现有一个 Samba 实现可以将 iOS 文件夹共享到 Windows,但我还没有找到我正在寻找的东西。
如何以编程方式从 iOS 设备读取 Windows 共享文件夹?
Windows 上有一种名为 SMB 的协议可以共享文件夹,不是吗? iOS SDK 上有该协议的实现吗?
I want to develop an application that can reads contents from a folder shared on a Windows Desktop.
I've found that there is a Samba implementation to share iOS folders to windows, but I've found yet what I'm looking for.
How can I read windows shared folders from my iOS device programatically?
There is a protocol called SMB to share folders on Windows, isn't it? Is there an implementation of that protocol on iOS SDK?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Xamarin.iOS(C# 上的 iOS 应用程序开发环境)中,免费库 "SharpCifs.Std" 存在。
对于文件读取,请像这样使用它:
我需要用 C# 而不是 Obj-C/Swift 编写,但我认为您可以充分利用您对 Obj-C/Swift 的知识。
In Xamarin.iOS (iOS app dev env on C#), the free library "SharpCifs.Std" exists.
For file reading, use it like this:
I need to write in C# rather than Obj-C/Swift, but I think that you can make use of your knowledge of Obj-C/Swift abundantly.