fopen 会在 Windows 上调用 CreateFile 吗?

Does fopen call CreateFile on Windows?

据我所知,CreateFilekernel32.dll 中找到,fopenlibc 中找到。假设这个问题它们都被用于文件操作,fopen 是在 Windows 上调用 CreateFile 还是它自己的独立文件 io 函数有自己的代码?

fopen() 呼叫 CreateFile()。 我之前调试到 fopen 并最终进入 CreateFile。除非有什么改变(我怀疑)..它仍然是那样。

我也在osr上找到了这个: https://community.osr.com/discussion/119538