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.
我之前问过是否有一个 openmode 的组合来避免修改现有文件。现在我想知道是否可能相反:
std::ios::trunc
有没有std::ios::openmode可用的方法来做到这一点std::ofstream?
std::ios::openmode
std::ofstream
据我所知,没有这样的开放模式(它看起来不像一个非常常见的用例)。我想你可以先检查文件是否存在,如果存在,就用trunc打开模式打开它。
trunc