|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| kernel32.lib
| Header File
| winbase.h
| Unicode
| WinNT
| Platform Notes
| None
|
|
|
GetCurrentDirectory
The GetCurrentDirectory function retrieves the current directory for the current process.
DWORD GetCurrentDirectory(
DWORD nBufferLength,
| // size, in characters, of directory buffer
| LPTSTR lpBuffer
| // address of buffer for current directory
| );
|
|
Parameters
nBufferLength
Specifies the length, in characters, of the buffer for the current directory
string. The buffer length must include room for a terminating null character.
lpBuffer
Points to the buffer for the current directory string. This null-terminated
string specifies the absolute path to the current directory.
Return Values
If the function succeeds, the return value specifies the number of characters
written to the buffer, not including the terminating null character.
If the function fails, the return value is zero. To get extended error
information, call GetLastError.
If the buffer pointed to by lpBuffer is not large enough, the return value specifies the required size of the
buffer, including the number of bytes necessary for a terminating null character.
See Also
CreateDirectory, GetSystemDirectory, GetWindowsDirectory, RemoveDirectory, SetCurrentDirectory
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|