在 Linux 下,我有两个文件路径 A 和 B:
const char* A = ...;
const char* B = ...;
我现在想确定,我应该open(2)
他们俩...
int fda = open(A, ...);
int fdb = open(B, ...);
...我会在文件系统中打开同一个文件的两个文件句柄吗?
为了确定这一点,我想到了stat(2)
:
struct stat
{
dev_t st_dev;
ino_t st_ino;
...
}
类似(伪代码):
bool IsSameFile(const char* sA, const char* sB)
{
stat A = stat(sA);
stat B = stat(sB);
return A.st_dev == B.st_dev && A.st_ino == B.st_ino;
}
是否存在 A 和 B 是同一个文件但IsSameFile
返回 false 的情况?
是否存在 A 和 B 是不同文件但IsSameFile
会返回 true 的情况?
有没有更好的方法来做我想做的事情?