Best way to determine if two path reference to same file in Windows?(确定两个路径是否引用 Windows 中同一个文件的最佳方法?)
问题描述
如何比较 2 个字符串以确定它们是否使用 C/C++ 引用 Win32 中的相同路径?
How would I compare 2 strings to determine if they refer to the same path in Win32 using C/C++?
虽然这将处理很多情况,但它遗漏了一些东西:
While this will handle a lot of cases it misses some things:
_tcsicmp(szPath1, szPath2) == 0
例如:
正斜杠/反斜杠
forward slashes / backslashes
相对/绝对路径.
标题已更改以匹配现有的 C# 问题.
Title changed to match an existing C# question.
推荐答案
用 CreateFile
打开两个文件,为两者调用 GetFileInformationByHandle
,并比较 dwVolumeSerialNumber代码>、<代码>nFileIndexLow
、nFileIndexHigh
.如果三个都相等,它们都指向同一个文件:
Open both files with CreateFile
, call GetFileInformationByHandle
for both, and compare dwVolumeSerialNumber
, nFileIndexLow
, nFileIndexHigh
. If all three are equal they both point to the same file:
GetFileInformationByHandle
函数一个>
BY_HANDLE_FILE_INFORMATION
结构
这篇关于确定两个路径是否引用 Windows 中同一个文件的最佳方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:确定两个路径是否引用 Windows 中同一个文件的最
- Stroustrup 的 Simple_window.h 2022-01-01
- 静态初始化顺序失败 2022-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 从python回调到c++的选项 2022-11-16
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- C++ 协变模板 2021-01-01