如何在Axapta X++中检查用户是否有文件的访问权限?

发布于 2024-12-25 18:29:18 字数 64 浏览 0 评论 0原文

如何在 Microsoft Dynamics Ax 2009 with X++ 中检查用户是否具有文件的访问权限?

How to check whether a user is having access permission for a file or not in Microsoft Dynamics Ax 2009 with X++?

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

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

发布评论

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

评论(1

漫漫岁月 2025-01-01 18:29:18

FileIoPermission 类用于确保代码在执行任何 IO 之前可以访问文件。以下是来自 MSDN 的代码示例

以下代码示例显示 FileIoPermission 类的新实例,该实例指定 File.txt 文件的读取访问权限。

调用assert 方法来声明代码随后可以调用AsciiIo.new 方法。

server static void main(Args args)
{
    FileIoPermission _perm;
    AsciiIo a;

    ;

    _perm = new FileIoPermission("c:\\File.txt",'r');
    _perm.assert();

    // Invoke the protected API.
    a = new AsciiIo("c:\\File.txt",'r');
}

FileIoPermission class is used to ensure that the code has access to a file before performing any IO. Here is the code sample from MSDN

The following code example shows a new instance of the FileIoPermission class that specifies read access for the File.txt file.

The assert method is called to declare that the code can then call the AsciiIo.new method.

server static void main(Args args)
{
    FileIoPermission _perm;
    AsciiIo a;

    ;

    _perm = new FileIoPermission("c:\\File.txt",'r');
    _perm.assert();

    // Invoke the protected API.
    a = new AsciiIo("c:\\File.txt",'r');
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文