OpenFileDialog 和 UnauthorizedAccessException

OpenFileDialog and UnauthorizedAccessException

我正在开发一种工具,可以将 .fbx 模型和用户输入处理到一个文件中,以便在游戏中使用。当用户按下 "Import Model" 按钮时的代码如下,每个按钮都类似:

private void E_ImportModelButton_Click_1(object sender, EventArgs e)
{
    E_model = null; // byte array where model is stored
    E_SelectedFileLabel.Text = "No Model Selected"; // label on form
    OpenFileDialog ofd = new OpenFileDialog();
    ofd.Filter = "FBX Model (.fbx)|*.fbx";
    ofd.Multiselect = false;
    if (ofd.ShowDialog() == DialogResult.OK)
    {
        // adjusts variables for game file
        string s = Path.GetDirectoryName(ofd.FileName);
        E_model = File.ReadAllBytes(s);
        E_SelectedFileLabel.Text = "File Selected: " + ofd.FileName;
    }
}

问题是,每当我单击“确定”时,都会出现 UnauthorizedAccessException。我已经尝试从 C:\Users\Owner\Downloads 以及 C:\Users\Owner\DesktopC:\ 驱动器本身导入文件,但它仍然发生。我可以向此代码添加什么以获得对这些(和其他)文件夹的访问权限?

您正在尝试通过用于从文件中读取的方法从目录中读取:

string s = Path.GetDirectoryName(ofd.FileName);
E_model = File.ReadAllBytes(s);

替换为:

E_model = File.ReadAllBytes(ofd.FileName);

你不能准备目录,你必须读取一个文件:

string s = Path.GetDirectoryName(ofd.FileName);
E_model = File.ReadAllBytes(s);

尝试在此处添加文件名