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を使用していますか?それで
fopen
x - ファイルを排他的に開きます (open(2) の O_EXCL フラグと同様)。ファイルが既に存在する場合、fopen() は失敗し、errno を EEXIST に設定します。このフラグは fdopen() では無視されます。