비주얼 C++질문입니다.. ㅜㅜ
글쓴이: scandum / 작성시간: 목, 2005/01/13 - 1:20오전
// Add all the files and directories in the windows directory.
TCHAR lpszWinPath[MAX_PATH], lpszOldPath[MAX_PATH];
::GetWindowsDirectory(lpszWinPath, MAX_PATH);
// Make the windows directory the current directory.
::GetCurrentDirectory(MAX_PATH, lpszOldPath);
::SetCurrentDirectory(lpszWinPath);
msdn사이트 주소는 다음과 같구요..
이걸로 디렉토리를 바꿀 수 있는것 같은데.. 어떻게 하는건지 예를 들어서 설명좀 해주세요..
msdn은 그냥 이해하기엔 너무 어려운 것 같습니다..
고수님들의 조언 부탁드립니다.
Forums:
어떤 걸 하고 싶으신건지요..
디렉토리를 바꾸고 싶으시다면
SetCurrentDirectory API 함수를 사용하시면 되는데요..
사용법은 SetCurrentDirectory("바꾸고자 하는 디렉토리의
Path");
GetWindowDirectory는 윈도우가 설치된 '윈도우' 디렉토리를
찾는 것이구요..
GetCurrentDirectory는 현재 사용중인 작업 디렉토리를
찾는 것입니다..
예를 찾으시기 보다는 질문 중의 코드를 직접 실행시켜
보시는 것이 어떨까요?
http://blog.dreamwiz.com/shjii
댓글 달기