반응형
if( access( fname, F_OK ) == 0 ){
// file exists
}
else{
// file doesn't exist
}
F_OK 파일 존재여부
R_OK 파일 read 퍼미션 여부
W_OK 파일 write 퍼미션 여부
X_OK 파일 execute 퍼미션 여부
반응형
if( access( fname, F_OK ) == 0 ){
// file exists
}
else{
// file doesn't exist
}
F_OK 파일 존재여부
R_OK 파일 read 퍼미션 여부
W_OK 파일 write 퍼미션 여부
X_OK 파일 execute 퍼미션 여부