Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Linux
- JSON
- label
- YOLO
- ubuntu
- 핑거스타일
- Python
- 컨테이너
- 기타 연주
- C
- Numpy
- 오류
- Selenium
- 프로그래머스
- pip
- 채보
- SSH
- error
- Visual Studio
- pandas
- VS Code
- paramiko
- C++
- windows forms
- OpenCV
- Docker
- C#
- LIST
- mysql
- pytorch
Archives
- Today
- Total
기계는 거짓말하지 않는다
C 디렉터리 소유권 변경, chown 함수 본문
디렉터리를 생성한 후, 생성된 디렉터리의 소유권을 변경하고 싶다면 chown 함수를 사용하여
디렉터리의 소유권을 변경할 수 있다. 아래는 예제 코드이며 UID, GID를 사용한다.
unistd.h, sys/types.h 헤더 파일을 포함해야 한다.
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdio.h>
// UID, GID를 사용하여 소유권을 변경하는 함수
int change_directory_ownership(const char* path, uid_t owner, gid_t group) {
if (chown(path, owner, group) == -1) {
perror("chown error");
return -1;
}
return 0;
}
int create_directory_with_permissions(const char* data_dir_path) {
if (access(data_dir_path, F_OK) == -1) { // 디렉토리가 존재하지 않으면
if (mkdir(data_dir_path, 0775) == -1) { // 디렉토리 생성
perror("make directory error");
return -1;
}
// 소유권 변경 (UID 1000과 GID 1000을 사용. 필요에 따라 변경)
if (change_directory_ownership(data_dir_path, 1000, 1000) == -1) {
return -1;
}
}
return 0;
}
int main() {
const char* data_dir_path = "/path/to/directory";
if (create_directory_with_permissions(data_dir_path) == -1) {
return -1;
}
return 0;
}
'C' 카테고리의 다른 글
libcurl curl_easy_perform() failed: SSL peer certificate or SSH remote key was not OK 오류 (0) | 2023.05.27 |
---|---|
배열 최댓값, 최솟값 찾기 (분할 정복, Divide and Conquer) (0) | 2023.04.21 |
C 파일 존재 여부, File Exist Check (0) | 2022.05.13 |
병합 정렬(Merge Sort) (0) | 2021.10.20 |
이진 검색 트리(Binary Search Tree) (0) | 2021.10.06 |
Comments