如何在Axapta X++中检查用户是否有文件的访问权限?
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FileIoPermission 类用于确保代码在执行任何 IO 之前可以访问文件。以下是来自 MSDN 的代码示例
以下代码示例显示 FileIoPermission 类的新实例,该实例指定 File.txt 文件的读取访问权限。
调用assert 方法来声明代码随后可以调用AsciiIo.new 方法。
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.