在Xamarin UWP应用程序中从远程网络共享打开文件

时间:2018-05-11 21:14:50

标签: xamarin uwp cross-platform filepicker

有没有办法在Xamarin UWP应用程序中从远程网络共享打开文件。 ?

我们尝试使用Xamarin文件选择器,但它包括用户选择文件。

private void OpenFile()
{
    FileData fileData = await CrossFilePicker.Current.PickFile();
    string fileName = fileData.FileName;
    string contents = System.Text.Encoding.UTF8.GetString(fileData.DataArray);
 }

我们希望如果用户点击路径,则文件将以读取模式显示。

2 个答案:

答案 0 :(得分:1)

  

有没有办法在Xamarin UWP应用程序中从远程网络共享打开文件。 ?

UWP已提供broadFileSystemAccess功能,可使用Windows.Storage namespace中的API访问更广泛的文件。您需要在访问之前添加受限制的broadFileSystemAccess功能。

<Package
  ...
  xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
  IgnorableNamespaces="uap mp rescap">

...
<Capabilities>
    <rescap:Capability Name="broadFileSystemAccess" />
</Capabilities>

如果您想要在.NET Standard中获取该文件,则需要创建DependencyService

.NET Standard

中创建文件访问界面

IFileAccess

public interface IFileAccess
 {
     Task<FileData> GetFileStreamFormPath(string Path);
 }
 public class FileData
 {
     public byte[] DataArray { get; set; }
     public string FileName { get; set; }
     public string FilePath { get; set; }
 }

在本机UWP项目中实施IFileAccess接口。

FileAccessImplementation

[assembly: Xamarin.Forms.Dependency(typeof(FileAccessImplementation))]
namespace App6.UWP
{
    public class FileAccessImplementation : IFileAccess
    {
        public async Task<FileData> GetFileStreamFormPath(string Path)
        {
            var file = await StorageFile.GetFileFromPathAsync(Path);
            byte[] fileBytes = null;
            if (file == null) return null;
            using (var stream = await file.OpenReadAsync())
            {
                fileBytes = new byte[stream.Size];
                using (var reader = new DataReader(stream))
                {
                    await reader.LoadAsync((uint)stream.Size);
                    reader.ReadBytes(fileBytes);
                }
            }

            var FileData = new FileData()
            {
                FileName = file.Name,
                FilePath = file.Path,
                DataArray = fileBytes
            };
            return FileData;
        }
    }
}

<强>用法

var file = DependencyService.Get<IFileAccess>().GetFileStreamFormPath(@"\\remote\folder\setup.exe");

答案 1 :(得分:0)

如果您有文件的名称和路径,请阅读其内容。你不需要FilePicker。

var filename = @"\\myserver\myshare\myfile.txt";
var file = await StorageFile.GetFileFromPathAsync(filename);
using(var istream = await attachmentFile.OpenReadAsync())
    using(var stream = istream.AsStreamForRead())
          using(var reader = new StreamReader(stream)) {
              var contents = reader.ReadToEnd();

          }