Deprecated: Array and string offset access syntax with curly braces is deprecated in /mnt/hep_web/hep_web/member/n-kota/dokuwiki/inc/init.php on line 542
ja:cpp:fileexistence [GiriWiki]

ユーザ用ツール

サイト用ツール


ja:cpp:fileexistence

ファイル・ディレクトリの存在確認


stat(“filename”,&st) が0を返せばファイル(ディレクトリ)が存在、それ以外なら存在しない。

#include <sys/stat.h>
...
 
struct stat st;
if( stat("filename",&st)==0 ){///// file exists
  cout << "file exist." << endl;
}
ja/cpp/fileexistence.txt · 最終更新: 2017/08/17 10:47 by kota