프로그래밍 노트

현재 작업 디렉토리 얻기 본문

Win32 SDK 초보

현재 작업 디렉토리 얻기

띠리 2007. 6. 12. 11:15
현재 작업 디렉토리 얻기

#include <stdio.h>

#include <direct.h>        // _getcwd

#include <stdlib.h>        // _MAX_PATH

#include <conio.h>        // _getch


void main()

{

    char szPath[_MAX_PATH]; // 최대 패스 길이[260]


    // 실행 파일이 있는 디렉토리 얻기

    _getcwd(szPath, _MAX_PATH);


    printf("실행파일이 있는 디렉토리\->%s\n", szPath);


    printf("아무키나 누르세요\");

    _getch();


}



Comments