From efa13a879df590ce0043a5b4f97597484bf264e1 Mon Sep 17 00:00:00 2001 From: inmarket Date: Wed, 13 Aug 2014 15:48:16 +1000 Subject: Move 3rd Party source to a new directory. Rationalise Fatfs code and fix a couple of configuration issues. --- 3rdparty/fatfs-0.10b/doc/ja/opendir.html | 76 ++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 3rdparty/fatfs-0.10b/doc/ja/opendir.html (limited to '3rdparty/fatfs-0.10b/doc/ja/opendir.html') diff --git a/3rdparty/fatfs-0.10b/doc/ja/opendir.html b/3rdparty/fatfs-0.10b/doc/ja/opendir.html new file mode 100644 index 00000000..88aa62ea --- /dev/null +++ b/3rdparty/fatfs-0.10b/doc/ja/opendir.html @@ -0,0 +1,76 @@ + + + + + + + + +FatFs - f_opendir + + + + +
+

f_opendir

+

ディレクトリを開きます。

+
+FRESULT f_opendir (
+  DIR* dp,           /* [OUT] ディレクトリ・ブジェクト構造体へのポインタ */
+  const TCHAR* path  /* [IN] ディレクトリ名へのポインタ */
+);
+
+
+ +
+

引数

+
+
dp
+
空のディレクトリ・オブジェクト構造体へのポインタを指定します。
+
path
+
オープンするディレクトリのパス名を示すヌル文字'\0'終端の文字列へのポインタを指定します。
+
+
+ + +
+

戻り値

+

+FR_OK, +FR_DISK_ERR, +FR_INT_ERR, +FR_NOT_READY, +FR_NO_PATH, +FR_INVALID_NAME, +FR_INVALID_OBJECT, +FR_INVALID_DRIVE, +FR_NOT_ENABLED, +FR_NO_FILESYSTEM, +FR_TIMEOUT, +FR_NOT_ENOUGH_CORE, +FR_TOO_MANY_OPEN_FILES +

+ +
+ + +
+

解説

+

ディレクトリを開きます。正常終了したら、作成されたDIR構造体を使ってこのディレクトリの項目を順次読み出せます。

+
+ + +
+

対応情報

+

_FS_MINIMIZE <= 1のとき使用可能になります。

+
+ + +
+

参照

+

f_readdir, f_closedir, DIR

+
+ +

戻る

+ + -- cgit v1.2.3