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
- paramiko
- LIST
- pytorch
- C#
- C
- Docker
- JSON
- mysql
- 기타 연주
- SSH
- windows forms
- error
- 핑거스타일
- OpenCV
- Selenium
- ubuntu
- pip
- 프로그래머스
- Linux
- pandas
- Numpy
- YOLO
- 명령어
- Visual Studio
- 오류
- label
- Python
- 채보
- VS Code
- C++
Archives
- Today
- Total
목록디렉터리 소유권 (1)
기계는 거짓말하지 않는다
C 디렉터리 소유권 변경, chown 함수
디렉터리를 생성한 후, 생성된 디렉터리의 소유권을 변경하고 싶다면 chown 함수를 사용하여디렉터리의 소유권을 변경할 수 있다. 아래는 예제 코드이며 UID, GID를 사용한다.unistd.h, sys/types.h 헤더 파일을 포함해야 한다.#include #include #include #include // 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_..
C
2024. 7. 18. 19:03