getcurdir

getcurdir,計算機程式語言函式,其功能是取指定驅動器的當前目錄。

函式功能

函式名: getCurdir
功 能: 取指定驅動器的當前目錄
用 法: int getcurdir(int drive, char *direc);

程式示例

#include
#include
#include
char *current_directory(char *path)
{
strcpy(path, "X:\\"); /* fill string with form of response: X:\ */
path[0] = 'A' + getdisk(); /* replace X with current drive letter */
getcurdir(0, path+3); /* fill rest of string with current directory */
return(path);
}
int main(void)
{
char curdir[MAXPATH];
current_directory(curdir);
printf("The current directory is %s\n", curdir);
return 0;
}

相關詞條

相關搜尋

熱門詞條

聯絡我們