You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
< html lang = "ja" >
< head >
< meta http-equiv = "Content-Type" content = "text/html; charset=Shift_JIS" >
< meta http-equiv = "Content-Style-Type" content = "text/css" >
< link rel = "up" title = "FatFs" href = "../00index_j.html" >
< link rel = "stylesheet" href = "../css_j.css" type = "text/css" media = "screen" title = "ELM Default" >
< title > FatFs - f_close< / title >
< / head >
< body >
< div class = "para" >
< h2 > f_close< / h2 >
< p > ファイルを閉じます。< / p >
< pre >
FRESULT f_close (
FIL* < em > FileObject< / em > /* ファイル・オブジェクトへのポインタ */
);
< / pre >
< / div >
< div class = "para" >
< h4 > 引数< / h4 >
< dl class = "par" >
< dt > FileObject< / dt >
< dd > 閉じようとするファイルのファイル・オブジェクト構造体へのポインタを指定します。< / dd >
< / dl >
< / div >
< div class = "para" >
< h4 > 戻り値< / h4 >
< dl class = "ret" >
< dt > FR_OK (0)< / dt >
< dd > 正常終了。< / dd >
< dt > FR_DISK_ERR< / dt >
< dd > ディスク・エラーによる失敗。< / dd >
< dt > FR_INT_ERR< / dt >
< dd > 不正なFAT構造または内部エラーによる失敗。< / dd >
< dt > FR_NOT_READY< / dt >
< dd > メディアがセットされていないなど、物理ドライブが動作不能状態。< / dd >
< dt > FR_INVALID_OBJECT< / dt >
< dd > 無効なファイル・オブジェクト。< / dd >
< / dl >
< / div >
< div class = "para" >
< h4 > 解説< / h4 >
< p > ファイルを閉じます。書き込みの行われたファイルの場合、キャッシュされた状態( R/Wバッファ上のデータ、変更されたFATやディレクトリ項目) はディスクに書き戻されます。関数が正常終了すると、そのファイル・オブジェクトは無効になり、そのメモリも解放できます。読み込み専用モードで開かれたファイル・オブジェクトは、この関数によるクローズ処理を経ずに破棄することもできます。< / p >
< / div >
< div class = "para" >
< h4 > 対応情報< / h4 >
< p > 全ての構成で使用可能です。< / p >
< / div >
< div class = "para" >
< h4 > 参照< / h4 >
< tt > < a href = "open.html" > f_open< / a > , < a href = "read.html" > f_read< / a > , < a href = "write.html" > f_write< / a > , < a href = "sync.html" > f_sync< / a > , < a href = "sfile.html" > FIL< / a > , < a href = "sfatfs.html" > FATFS< / a > < / tt >
< / div >
< p class = "foot" > < a href = "../00index_j.html" > 戻る< / a > < / p >
< / body >
< / html >