파일 속성 다루기
☞ stat, fstat, lstat, chown, fchown, umask, getumask, chmod, fchmod, access, utime, truncate, ftruncate int stat(const char *filename, struct stat *buf); int fstat(int filedes, struct stat *buf); int lstat(const char *filename, struct stat *buf); int chown(const char *filename, uid_t owner, gid_t group); int fchown(int filedes, uid_t owner, gid_t group); mode_t umask(mode_t mask); mode_t getumas..
C | C++
2018. 6. 17. 17:13