C 中用于更改 HP-UX 中文件权限的任何系统调用

发布于 2024-10-29 16:14:19 字数 36 浏览 1 评论 0原文

C 中的任何系统调用都可以更改 HP-UX 中文件的权限?

Any system call in C to change the permission of a file in HP-UX??

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

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

发布评论

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

评论(1

为你鎻心 2024-11-05 16:14:19

请参阅 chmod文档) >sys/stat.h。下面的例子来自文档。 HP-UX 符合 POSIX 标准,因此您可以使用这些函数以及 C 库中的标准函数。

以下示例为名为 /home/cnd/mod1 的文件设置文件权限位,然后调用 stat() 函数来验证权限。

#include <sys/types.h>
#include <sys/stat.h>

int status;
struct stat buffer
...
chmod("home/cnd/mod1", S_IRWXU|S_IRWXG|S_IROTH|S_IWOTH);
status = stat("home/cnd/mod1", &buffer;);

See chmod (documentation) in sys/stat.h. The example below comes from the documentation. HP-UX is POSIX compliant so you can use those functions as well as standard functions from the C library.

The following example sets the file permission bits for a file named /home/cnd/mod1, then calls the stat() function to verify the permissions.

#include <sys/types.h>
#include <sys/stat.h>

int status;
struct stat buffer
...
chmod("home/cnd/mod1", S_IRWXU|S_IRWXG|S_IROTH|S_IWOTH);
status = stat("home/cnd/mod1", &buffer;);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文