FileReadBool
CSV形式の文字列のファイルから現在の位置から区切り文字まで(またはテキスト行の最後まで)読み取り、読み取った文字列をブール型の値に変換します。 bool FileReadBool( int file_hand…
CSV形式の文字列のファイルから現在の位置から区切り文字まで(またはテキスト行の最後まで)読み取り、読み取った文字列をブール型の値に変換します。 bool FileReadBool( int file_hand…
ファイルの整数プロパティを取得します。この関数には2つのバリアントがあります。 1.ファイルのハンドルでプロパティを取得します。 long FileGetInteger( int …
ローカルまたは共有フォルダーから別のフォルダーにファイルを移動します。 bool FileMove( const string src_file_name, // File name for the mo…
この関数は、ローカルまたは共有フォルダーから別のファイルに元のファイルをコピーします。 bool FileCopy( const string src_file_name, // Name of a s…
ファイルの存在を確認します。 bool FileIsExist( const string file_name, // File name int common_flag=…
この関数は、検索ハンドルを閉じます。 void FileFindClose( long search_handle // Search handle ); パラメーター search_hand…
この関数は、FileFindFirst()によって開始された検索を続行します。 bool FileFindNext( long search_handle, // Search hand…
この関数は、指定されたフィルターに従って、ディレクトリ内のファイルまたはサブディレクトリの検索を開始します。 long FileFindFirst( const string file_filter, …
int FileWriteString(int handle, string value, int length) The function writes the string to a binary fi…
int FileWriteInteger(int handle, int value, int size=LONG_VALUE) The function writes the integer value …