对于桌面应用,我使用以下方法访问网络共享:
[DllImport("mpr.dll")]
private static extern int WNetAddConnection2(NetResource netResource,
string password, string username, int flags);
[DllImport("mpr.dll")]
private static extern int WNetCancelConnection2(string name, int flags,
bool force);
WP8 SDK上是否有类似的API?
答案 0 :(得分:2)
没有。 Windows手机不支持网络共享。它与完整的窗口不一样。没有dllimport或访问本地Apis
答案 1 :(得分:0)
我认为这也不可行。另外,我确定你不想构建一个小型服务器来提供目标计算机上的文件和文件夹......但是你可以做一些类似于“Easy Transfer”(http://www.windowsphone.com/en-us/store/app/easy-transfer/5ccb6655-2ff9-4977-bf8b-577e92bbb236)的应用程序并构建应用程序以充当服务器。