获取文件或文件夹的权限

发布于 2024-12-15 07:28:31 字数 356 浏览 1 评论 0原文

我正在尝试获取当前用户对文件/文件夹的权限。我在这里找到了一篇关于它的好文章。我尝试运行这个程序,但我遇到了一些错误,而且我不知道在哪里可以找到解决方案。我尝试制作自己的版本。不幸的是,当我尝试时:

LPWSTR lpszPrimaryDC = NULL;
NetGetDCName(NULL, L"A", (LPBYTE *)&lpszPrimaryDC);

我收到错误:NERR_DCNotFound。我该如何解决这个问题?

Iam trying to get permissions on file/folder for current user. I found nice article about it here. I have tried to run this program but I got few erros and I dont know where I can find solutions to them. I tried to make my own version. Unfortunately when i try:

LPWSTR lpszPrimaryDC = NULL;
NetGetDCName(NULL, L"A", (LPBYTE *)&lpszPrimaryDC);

I got error: NERR_DCNotFound. How I can solve this problem?

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

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

发布评论

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

评论(2

Bonjour°[大白 2024-12-22 07:28:31

文档称,当“找不到域名参数中指定的域的域控制器”时,会返回错误。您有一个名为“A”的域名吗?如果不是,该函数就会失败(并且您需要重新思考为什么/如何调用它)。

The documentation says that error is returned when it "Could not find the domain controller for the domain specified in the domainname parameter." Do you have a domain called "A"? If not, the function is right to fail (and you need to rethink why/how you are calling it).

错爱 2024-12-22 07:28:31

代码不崩溃并给我正确答案的问题的唯一方法:文件或文件夹可读吗?

`   
FILE *myFile = fopen(dirPath, "r");
if (myFile == 0) {
    // "File or Dir is not readable
}
`

希望这有帮助。您可以使用相同的方法用“w”编写测试。

The only way the code didn't crash and gave me correct answer to question: is file or folder readable?

`   
FILE *myFile = fopen(dirPath, "r");
if (myFile == 0) {
    // "File or Dir is not readable
}
`

Hope this helps. You can use the same for writing test with "w".

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