繁体   English   中英

UWP FileStream 抛出“对路径的访问被拒绝”。

[英]UWP FileStream throws "Access to path is denied."

我在上大学,我被授予一项任务来制作一个应用程序,该应用程序可以计算和显示 UWP 应用程序中文件的哈希值。 每次当我想计算我选择的文件的哈希值时,我都会收到“对路径的访问被拒绝”。 错误。 我想计算传递文件流作为参数的哈希值。 我尝试以管理员身份运行 Visual Studio,但没有成功。 下面是代码。

public partial class MainPage : Page
{
    byte[] result;
    string[] algorithms = { "MD5", "SHA-1", "SHA256", "SHA384", "SHA512" };
    string algorithm = "", path = "";
    HashAlgorithm hash;

    public MainPage()
    {
        this.InitializeComponent();

        AlgorithmsList.ItemsSource = algorithms;
    }

    /* Browse for file */
    private async void BrowseButton(object sender, RoutedEventArgs e)
    {
        FileOpenPicker openPicker = new FileOpenPicker();

        openPicker.ViewMode = PickerViewMode.Thumbnail;
        openPicker.SuggestedStartLocation = PickerLocationId.DocumentsLibrary;
        openPicker.FileTypeFilter.Add("*");

        StorageFile file = await openPicker.PickSingleFileAsync();

        if (file != null)
        {
            resultTextBlock.Text = "Result";
            pathTextBlock.Text = file.Path;
            path = file.Path;
        }
    }

    /* Method that shows the hash after computing it */
    private async void GoButton(object sender, RoutedEventArgs e)
    {
        if (path == "" || AlgorithmsList.SelectedIndex == -1)
        {
            MessageDialog dialog;

            if (path == "")
                dialog = new MessageDialog("You have to select a file");
            else
                dialog = new MessageDialog("You have to select an algorithm");

            await dialog.ShowAsync();
        }
        else
        {
            algorithm = AlgorithmsList.Text;
            string hash = await Task.Run(() => CalculateHash());
            resultTextBlock.Text = hash;
        }
    }

    private string CalculateHash()
    {
        string exception = "";

        hash = InitAlgorithm();

        try
        {
            using (var fileStream = new FileStream(path, FileMode.Open, FileAccess.Read))
            {
                fileStream.Position = 0;
                result = hash.ComputeHash(fileStream);
            }

            StringBuilder sb = new StringBuilder(result.Length * 2);
            foreach (byte b in result)
            {
                sb.AppendFormat("{0:x2}", b);
            }

            return sb.ToString();
        }
        catch (Exception e)
        {
            exception = e.ToString();
        }

        return exception;
    }

    private HashAlgorithm InitAlgorithm()
    {
        HashAlgorithm hash = null;

        switch (algorithm)
        {
            case ("MD5"):
                hash = MD5.Create();
                break;
            case ("SHA-1"):
                hash = SHA1.Create();
                break;
            case ("SHA256"):
                hash = SHA256.Create();
                break;
            case ("SHA384"):
                hash = SHA384.Create();
                break;
            case ("SHA512"):
                hash = SHA512.Create();
                break;
        }

        return hash;
    }
}

您无权访问该路径。 您只能访问StorageFile 所以让它在MainPage可变并在CalculateHash使用它。

请不要使用路径直接创建FileStream ,UWP 应用程序对通过路径访问文件有严格的限制。

您已经通过FileOpenPicker获取到StorageFile对象,请使用它代替path变量,并使用以下代码:

using (var stream = await file.OpenStreamForReadAsync())
{
    stream.Position = 0;
    result = hash.ComputeHash(stream);
}

StringBuilder sb = new StringBuilder(result.Length * 2);
foreach (byte b in result)
{
    sb.AppendFormat("{0:x2}", b);
}

return sb.ToString();

此致。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM