'c or linux' 카테고리의 다른 글
chdir 이후 cwd 위치 (0) | 2010.10.19 |
---|---|
chattr/lsattr 과 ext2 연관관계? (0) | 2010.10.19 |
Domain Socket 정리 (0) | 2010.10.19 |
stat 파일 상태 확인 (0) | 2010.10.19 |
FILE 관련 API (0) | 2010.10.19 |
#include <sys/types.h>
#include <sys/stat.h>
int main(void) {
struct stat statbuf;
if (stat("foo", &statbuf) < 0 ) {
perror("stat error for foo");
return -1;
}
int chmodValue = chmod("foo", (statbuf.st_mode & ~S_IXGRP) | S_ISGID);
if (chmodValue < 0) {
perror("chmod error for foo");
return -1;
}
int chmod2Value = chmod("bar", S_IRUSR| S_IWUSR| S_IRGRP| S_IROTH);
if (chmod2Value < 0) {
perror("chmod error for foo");
return -1;
}
return 0;
}
chdir 이후 cwd 위치 (0) | 2010.10.19 |
---|---|
chattr/lsattr 과 ext2 연관관계? (0) | 2010.10.19 |
Domain Socket 정리 (0) | 2010.10.19 |
stat 파일 상태 확인 (0) | 2010.10.19 |
FILE 관련 API (0) | 2010.10.19 |
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |