我有一个从文件读取并写入文件的程序。我想阻止用户为两者指定相同的文件(出于显而易见的原因)。假设第一条路径位于char* path1
,第二条路径位于char* path2
。我可以fopen()
这两条路径,每个路径都拨打fileno()
并获得相同的号码吗?
更清楚地解释:
char* path1 = "/asdf"
char* path2 = "/asdf"
FILE* f1 = fopen(path1, "r");
FILE* f2 = fopen(path2, "w");
int fd1 = fileno(f1);
int fd2 = fileno(f2);
if(fd1 == fd2) {
printf("These are the same file, you really shouldn't do this\n");
}
我不想比较文件名,因为人们很容易通过/asdf/./asdf
之类的路径或使用符号链接来破坏它。最终,我不想将我的输出写入我正在阅读的文件中(可能会导致严重的问题)。
答案 0 :(得分:20)
是 - 比较文件设备ID和inode。根据{{3}}:
st_ino和st_dev字段一起唯一标识系统中的文件。
使用
int same_file(int fd1, int fd2) {
struct stat stat1, stat2;
if(fstat(fd1, &stat1) < 0) return -1;
if(fstat(fd2, &stat2) < 0) return -1;
return (stat1.st_dev == stat2.st_dev) && (stat1.st_ino == stat2.st_ino);
}