_getcwd
, _wgetcwd
現在の作業ディレクトリを取得します。
構文
char *_getcwd(
char *buffer,
int maxlen
);
wchar_t *_wgetcwd(
wchar_t *buffer,
int maxlen
);
パラメーター
buffer
パスの格納場所。
maxlen
文字数でのパスの最大長。char
の場合は _getcwd
、および wchar_t
の場合は _wgetcwd
。
戻り値
buffer
へのポインターを返します。 NULL
戻り値はエラーを示し、errno
はENOMEM
に設定されます。これは、maxlen
バイトを割り当てるメモリが不足していることを示します (NULL
引数がbuffer
として指定されている場合)、またはERANGE
してパスがmaxlen
文字より長くなっていることを示します。 maxlen
が 0 以下の場合、この関数は無効なパラメーター ハンドラーを呼び出します(パラメーター検証。
これらのリターン コードとその他のリターン コードについては、「errno
、_doserrno
、_sys_errlist
、_sys_nerr
」を参照してください。
解説
_getcwd
関数は、既定のドライブの現在の作業ディレクトリの完全なパスを取得し、それを buffer
に格納します。 整数の引数 maxlen
はパスの最大長を指定します。 パスの長さ (終端の null 文字を含む) が maxlen
。 buffer
引数は NULL
になる可能性があります。パスを格納するため、 maxlen
サイズ以上のバッファー (必要であればそれ以上) が malloc
を使用して自動的に割り当てられます。 このバッファーは free
を呼び出し、それに _getcwd
の戻り値 (割り当てられるバッファーへのポインター) を渡すことにより、後で解放できます。
_getcwd
は、現在の作業ディレクトリのパスを示す文字列を返します。 現在の作業ディレクトリがルートの場合、文字列は円記号 (\
) で終わります。 現在の作業ディレクトリがルート以外のディレクトリの場合、文字列は、円記号ではなく、ディレクトリの名前で終わります。
ワイド文字を扱う場合は、_wgetcwd
ではなく _getcwd
を使用します。 buffer
の場合、 _wgetcwd
引数にはワイド文字列を指定します。また戻り値もワイド文字列です。 それ以外では、_wgetcwd
と _getcwd
の動作は同じです。
_DEBUG
と_CRTDBG_MAP_ALLOC
が定義されている場合、_getcwd
と_wgetcwd
の呼び出しは、メモリ割り当てをデバッグできるように、_getcwd_dbg
と_wgetcwd_dbg
の呼び出しに置き換えられます。 詳細については、「 _getcwd_dbg
」と「 _wgetcwd_dbg
の両方を管理できます。
既定では、この関数のグローバル状態の適用対象は、アプリケーションになります。 この動作を変更するには、「CRT でのグローバル状態」を参照してください。
汎用テキスト ルーチンのマップ
Tchar.h ルーチン |
_UNICODE と _MBCS が定義されていない |
_MBCS が定義されている |
_UNICODE が定義されている |
---|---|---|---|
_tgetcwd |
_getcwd |
_getcwd |
_wgetcwd |
要件
ルーチンによって返される値 | 必須ヘッダー |
---|---|
_getcwd |
<direct.h> |
_wgetcwd |
<direct.h> または <wchar.h> |
互換性の詳細については、「 Compatibility」を参照してください。
例
// crt_getcwd.c
// Compile with: cl /W4 crt_getcwd.c
// This program places the name of the current directory in the
// buffer array, then displays the name of the current directory
// on the screen. Passing NULL as the buffer forces getcwd to allocate
// memory for the path, which allows the code to support file paths
// longer than _MAX_PATH, which are supported by NTFS.
#include <direct.h> // _getcwd
#include <stdlib.h> // free, perror
#include <stdio.h> // printf
#include <string.h> // strlen
int main( void )
{
char* buffer;
// Get the current working directory:
if ( (buffer = _getcwd( NULL, 0 )) == NULL )
perror( "_getcwd error" );
else
{
printf( "%s \nLength: %zu\n", buffer, strlen(buffer) );
free(buffer);
}
}
C:\Code
関連項目
ディレクトリ コントロール
_chdir
, _wchdir
_mkdir
, _wmkdir
_rmdir
, _wrmdir