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.
我正在尝试从我的可可应用程序中打开位于 Windows 共享文件夹中的 pdf 文件。
我正在尝试使用 NSWorkSpace openFile 方法打开文件,并且我正在传递类似于 @"smb:\192.168.2.1\sharedFolderName\my.pdf 的路径。
但是我无法打开文件。在打开文件之前我必须挂载共享文件夹吗?
共享文件夹的正确 URL 是
smb://[[domain;]username[:password]@]server[/share[/path]]
所以在你的例子中应该是
@"smb://192.168.2.1/sharedFolderName/my.pdf"