如何从已经存在的文件中复制权限?

Posted

技术标签:

【中文标题】如何从已经存在的文件中复制权限?【英文标题】:How can I copy permissions from a file that already exists? 【发布时间】:2013-08-04 15:35:35 【问题描述】:

我必须用 C 语言(在类 Unix 系统上)编写一个程序,这是我的问题:

我有一个文件 (FILE1),我想创建另一个与 FILE1 具有相同权限的文件 (FILE2)。然后我必须创建另一个文件(FILE3),它具有与 FILE1 相同的权限,但仅适用于所有者。

我会使用 chmod() 来更改权限,但我不明白如何获取 FILE1 的权限。

你能帮帮我吗?

【问题讨论】:

另请阅读advancedlinuxprogramming.com 【参考方案1】:

stat()fstat() 函数检索struct stat,其中包括一个成员st_mode,指示存储权限的文件模式。

您可以在屏蔽掉非文件权限位后将此值传递给chmod()fchmod()

struct stat st;

if (stat(file1, &st))

    perror("stat");
 
else

    if (chmod(file2, st.st_mode & 07777))
    
        perror("chmod");
    

【讨论】:

【参考方案2】:

使用stat(2)系统调用。

int stat(const char *path, struct stat *buf);

struct stat 
    ....
    mode_t    st_mode;    /* protection */
    ....
;

st_mode 中使用以下标志。

S_IRWXU    00700     mask for file owner permissions
S_IRUSR    00400     owner has read permission
S_IWUSR    00200     owner has write permission
S_IXUSR    00100     owner has execute permission

S_IRWXG    00070     mask for group permissions
S_IRGRP    00040     group has read permission
S_IWGRP    00020     group has write permission
S_IXGRP    00010     group has execute permission

S_IRWXO    00007     mask for permissions for others (not in group)
S_IROTH    00004     others have read permission
S_IWOTH    00002     others have write permission
S_IXOTH    00001     others have execute permission

【讨论】:

【参考方案3】:

这个答案在其他两个之后。所以我只给你一些代码。

#include <sys/stat.h>
#include <stdio.h>
int main()

     struct stat buffer;
     mode_t file1_mode;
     if(stat("YourFile1_PathName",&buffer) != 0)//we get all information about file1
     printf("stat error!\n"); return -1;
     file1_mode = buffer.st_mode;//now we get the permissions of file1
     umask(file1_mode^0x0777);//we set the permissions of file1 to this program.then all file create by this program have the same permissions as file1
     // ....do what you want  below     


【讨论】:

这是不正确的,传递给umask的值是在open()O_CREAT创建的文件中没有设置的权限。 @caf 我的错误。对不起。

以上是关于如何从已经存在的文件中复制权限?的主要内容,如果未能解决你的问题,请参考以下文章

如果已经有同名文件,如何将文件复制到文件夹中?

如何检查文件名是不是已经存在? [复制]

VF中如何将一个表的内容复制到另一个已经存在的表中

如何在特定查看器中从内部存储打开文件? [复制]

如何将文件从沙盒应用程序正确复制到应用程序脚本文件夹?

llinux 复制移动命令