getcwd.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2. <html lang="ja">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
  5. <meta http-equiv="Content-Style-Type" content="text/css">
  6. <link rel="up" title="FatFs" href="../00index_j.html">
  7. <link rel="alternate" hreflang="en" title="English" href="../en/getcwd.html">
  8. <link rel="stylesheet" href="../css_j.css" type="text/css" media="screen" title="ELM Default">
  9. <title>FatFs - f_getcwd</title>
  10. </head>
  11. <body>
  12. <div class="para func">
  13. <h2>f_getcwd</h2>
  14. <p>カレント・ディレクトリを得ます。</p>
  15. <pre>
  16. FRESULT f_getcwd (
  17. TCHAR* <span class="arg">buff</span>, <span class="c">/* [OUT] バッファ */</span>
  18. UINT <span class="arg">len</span> <span class="c">/* [IN] バッファ・サイズ */</span>
  19. );
  20. </pre>
  21. </div>
  22. <div class="para arg">
  23. <h4>引数</h4>
  24. <dl class="par">
  25. <dt>buff</dt>
  26. <dd>カレント・ディレクトリのパス名文字列を格納するバッファ</dd>
  27. <dt>len</dt>
  28. <dd><tt>TCHAR</tt>単位のバッファ・サイズ</dd>
  29. </dl>
  30. </div>
  31. <div class="para ret">
  32. <h4>戻り値</h4>
  33. <p>
  34. <a href="rc.html#ok">FR_OK</a>,
  35. <a href="rc.html#de">FR_DISK_ERR</a>,
  36. <a href="rc.html#ie">FR_INT_ERR</a>,
  37. <a href="rc.html#nr">FR_NOT_READY</a>,
  38. <a href="rc.html#ne">FR_NOT_ENABLED</a>,
  39. <a href="rc.html#ns">FR_NO_FILESYSTEM</a>,
  40. <a href="rc.html#tm">FR_TIMEOUT</a>,
  41. <a href="rc.html#nc">FR_NOT_ENOUGH_CORE</a>
  42. </p>
  43. </div>
  44. <div class="para desc">
  45. <h4>解説</h4>
  46. <p>カレント・ドライブのカレント・ディレクトリのフル・パス文字列を取得します。<tt>_VOLUMES</tt>が2以上のときは、論理ドライブ番号の付加されたパス名となります。</p>
  47. </div>
  48. <div class="para comp">
  49. <h4>対応情報</h4>
  50. <p><tt>_FS_RPATH == 2</tt>のとき使用可能です。</p>
  51. </div>
  52. <div class="para ref">
  53. <h4>参照</h4>
  54. <p><tt><a href="chdrive.html">f_chdrive</a>, <a href="chdir.html">f_chdir</a></tt></p>
  55. </div>
  56. <p class="foot"><a href="../00index_j.html">戻る</a></p>
  57. </body>
  58. </html>