関数file_existance_check マニュアル

(The documentation of function file_existance_check)

Last Update: 2021/12/1


◆機能・用途(Purpose)

ファイルの存在をチェックし、 ディレクトリ等ではなく通常のファイルであることを確認する。 ファイルが存在しない場合やディレクトリ等の場合はエラー終了する。
Check that a file exists and it is a regular file (i.e., not a directory, etc). The program finishes as an error if the file does not exist or is not a regular file.


◆形式(Format)

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


◆引数(Arguments)

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


◆使用例(Example)

file_existance_check("file.txt");