반응형
// 파일의 Readable/Writable/Executable/Deletable 상태 확인하기.
NSFileManager *filemgr = [NSFileManager defaultManager];
if ([filemgr isWritableFileAtPath:@"filePath"] == YES)
{
NSLog(@"File is writable");
}
else
{
NSLog(@"File is read only");
}
isReadableFileAtPath, isWritableFileAtPath, isExecutableFileAtPath
반응형
'IPHONE' 카테고리의 다른 글
파일 복사하기. (0) | 2014.01.07 |
---|---|
파일 옮기기와 이름 바꾸기. (0) | 2014.01.07 |
두 파일의 내용 비교하기. (0) | 2014.01.07 |
파일이 존재하는지 확인하기. (0) | 2014.01.07 |
디렉터리 내용 목록 표시하기. (0) | 2014.01.06 |