如何更改Linux文件属性
我在 C 语言而不是 CPP 中工作,想要将可执行文件的属性更改为隐藏、只读、可执行。我还想使用我的 C 代码更改文件的权限。我怎样才能做到这一点?
I am working in C not in CPP and want to change the attributes of a executable file to hidden, read only, executable. I also want to change file's permission using my C-code. How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然没有将文件标记为隐藏的标志,但有一个惯例是以点 (
.
) 开头的文件是隐藏的。因此,要使文件“隐藏”,请将其重命名为以点开头。While there is no such thing as a flag to mark a file as hidden, there is a convention that files beginning with a dot (
.
) are hidden. So to make a file "hidden", rename it to start with a dot.