Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
复制文件的unix文件权限并将其设置为另一个文件的最简单方法是什么?有没有办法将文件的权限存储到变量中,然后使用该变量将这些权限设置到另一个文件?
当然。使用stat()和chmod()(可能需要root)。
stat()
chmod()
#include <sys/stat.h> struct stat st; stat("/foo/bar.txt", &st); chmod("/baz/quirk.jpg", st.st_mode);