我试图从域内的网络位置播放MediaElement上的文件。
我尝试过使用模拟,如下所示:I can't access unc path from C#. Getting access is denied
我收到错误:5'访问被拒绝'当试图进行模仿时。
同时将分享设置为“每个人”'如果我想将文件从网络复制(或打开)到本地
,则无济于事我尝试过使用StorageFolder:
StorageFolder folder = await StorageFolder.GetFolderFromPathAsync(Path.GetDirectoryName("FILELOCATION"));
StorageFile file = await folder.GetFileAsync(Path.GetFileName("FILENAME"));
var stream = file.OpenAsync(Windows.Storage.FileAccessMode.Read).GetResults();
只需使用File.Copy(" FileLocation"," LocalFileLocation")
似乎没什么用。这里有人可以提供帮助吗?
谢谢是提前