반응형
/*
* http://sosal.tistory.com/
* made by so_Sal
*/
1. getcwd() 함수
2. 예제
1. getcwd() 함수
#include<unistd.h>
char* getcwd( char* buf, size_t bufsize);
경로를 나타내는 문자열의 시작 주소가 반환됩니다.
buf :: 현재 디렉토리의 경로가 저장될 배열
bufsize :: 현재 디렉토리 경로 문자열의 크기 (unsigned int = size_t)
2. 예제
#include<stdio.h>
#include<unistd.h>
int main(void){
char buf[BUFSIZ];
int bufsize;
getcwd(buf,bufsize);
printf("buf :: %s , size :: %d \n",buf,bufsize);
return 0;
}
실행 결과
'Linux > Linux_Source' 카테고리의 다른 글
Linux Shell 구현 소스 (5) | 2011.05.23 |
---|---|
Linux :: 간단한 Port scanner 구현하기 (2) | 2010.01.27 |
Linux - ps 프로세스 리스트 출력 프로그램 및 소스 (0) | 2010.01.26 |
fork, pipe를 이용한 간단한 프로세스 통신 예제 (1) | 2009.12.18 |
Socket - client 소스, 다중 프로세스 채팅방 (1) | 2009.11.07 |