FileIOPermission.GetPathList 抛出异常?

发布于 2024-11-08 01:25:23 字数 357 浏览 1 评论 0原文

我正在使用 FileIOPermission,它向我抛出一个错误:

FileIOPermission fileIOPerm = new FileIOPermission(FileIOPermissionAccess.AllAccess, folderName);
string[] paths = fileIOPerm.GetPathList(FileIOPermissionAccess.AllAccess);`

错误是:

ArgumentException 未处理 - 必须设置一个标志。

我用谷歌搜索了这个,没有任何关于这个错误的信息。

I'm using FileIOPermission, and it's throwing an error on me:

FileIOPermission fileIOPerm = new FileIOPermission(FileIOPermissionAccess.AllAccess, folderName);
string[] paths = fileIOPerm.GetPathList(FileIOPermissionAccess.AllAccess);`

Error is:

ArgumentException was unhandled - Must set exactly one flag.

I Googled this, there's no info anywhere for this error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小忆控 2024-11-15 01:25:23

来自 MSDN 文档

追加、读取、写入和
PathDiscovery 访问文件或
目录。 AllAccess代表
多个 FileIOPermissionAccess 值
并在以下情况下引发 ArgumentException
用作访问参数
GetPathList 方法,该方法需要一个
单一值。

From the MSDN documentation

Append , Read, Write, and
PathDiscovery access to a file or
directory. AllAccess represents
multiple FileIOPermissionAccess values
and causes an ArgumentException when
used as the access parameter for the
GetPathList method, which expects a
single value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文