Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我知道它的名称,如何在 Windows 中关闭打开的文件,例如“C:\1.txt”(它是通过 CreateFile(...) 打开的)?谢谢
只需关闭调用 CreateFile 时创建的句柄。CloseHandle()
CloseHandle()
顺便说一句,当您有 C++ 标准方法来处理文件时,为什么要使用 Windows API?
看到这个