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.
如何在 C++ 中设置当前驱动器?我在 MSDN 网站上找不到任何东西
用于设置目录的字符串可以以驱动器号为前缀——即“c:\program files”。
目录是相对于您的程序当前工作目录设置的。如果您从“X”驱动器启动程序,您将无法使用相关约定/目录寻址移出“X”。您需要使用以正确驱动器号为前缀的目录字符串。
根据 Win API 上的 MSDN 文档,SetCurrentDirectory还将设置当前驱动器。
SetCurrentDirectory