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.
我想在写文件时锁定一个文件,没有人应该能够读取它。怎么做?..请提供示例代码。
你用fopen吗?然后
开放
x - 以独占方式打开文件(如 open(2) 的 O_EXCL 标志)。如果文件已经存在,fopen() 将失败,并将 errno 设置为 EEXIST。fdopen() 忽略此标志。