C 中用于更改 HP-UX 中文件权限的任何系统调用
C 中的任何系统调用都可以更改 HP-UX 中文件的权限?
Any system call in C to change the permission of a file in HP-UX??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
C 中的任何系统调用都可以更改 HP-UX 中文件的权限?
Any system call in C to change the permission of a file in HP-UX??
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
请参阅
chmod
(文档) >sys/stat.h。下面的例子来自文档。 HP-UX 符合 POSIX 标准,因此您可以使用这些函数以及 C 库中的标准函数。See
chmod
(documentation) insys/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.