X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/70702af1370e44e32fb2c3c507e4759a187b4fe5:/fatfs/doc/en/getcwd.html..289f6a146c0b2087607d8d8659531ea90142779a:/fatfs/documents/ja/getcwd.html diff --git a/fatfs/doc/en/getcwd.html b/fatfs/doc/en/getcwd.html deleted file mode 100644 index 52a7f3f..0000000 --- a/fatfs/doc/en/getcwd.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - -FatFs - f_getcwd - - - - -
-

f_getcwd

-

The f_getcwd function retrieves the current directory and current drive.

-
-FRESULT f_getcwd (
-  TCHAR* buff, /* [OUT] Buffer to return path name */
-  UINT len     /* [IN] The length of the buffer */
-);
-
-
- -
-

Parameters

-
-
buff
-
Pointer to the buffer to receive the current directory string.
-
len
-
Size of the buffer in unit of TCHAR.
-
-
- - -
-

Return Values

-

-FR_OK, -FR_DISK_ERR, -FR_INT_ERR, -FR_NOT_READY, -FR_NOT_ENABLED, -FR_NO_FILESYSTEM, -FR_TIMEOUT, -FR_NOT_ENOUGH_CORE -

-
- - -
-

Description

-

The f_getcwd function retrieves full path name of the current directory of the current drive. When _VOLUMES is larger than 1, a logical drive number is added to top of the path name.

-

Note: In this revision, this function cannot retrieve the current directory path on the exFAT volume. It always returns the root directory path.

-
- - -
-

QuickInfo

-

Available when _FS_RPATH == 2.

-
- - -
-

See Also

-

f_chdrive, f_chdir

-
- -

Return

- -