関数file_overwrite_check マニュアル

(The documentation of function file_overwrite_check)

Last Update: 2021/12/1


◆機能・用途(Purpose)

ファイルを書き込みモードで開く前にファイルが存在するか確認し、 存在する場合には上書きしても良いかどうか尋ねる。
Check if a file exists before opening it by the writing mode, and consult to the user if the existing file should be overwritten.


◆形式(Format)

#include <file.h>
inline void file_overwrite_check(const char ∗filename)


◆引数(Arguments)

filename チェックしたいファイル名。
Name of the file to check.


◆使用例(Example)

file_overwrite_check("file.txt");