<meta charset="utf-8" />
BOOL flag = NO;
//파일 매니져 생성
NSFileManager* fileManager = [NSFileManager defaultManager];
// Document 디렉토리 불러옴
NSString* rootDir = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
// 디렉토리 열거자 생성
NSDirectoryEnumerator *enumerator = [fileManager enumeratorAtPath:rootDir];
NSString *path;
// nextObject 이용 파일이름을 불러옴
while( (path = [enumerator nextObject]) != nil ){
// fileExistsAtPath 이용, 파일이 존재하는지 확인
// idDirectory의 인자로 BOOL 변수 포인터를 지정, 폴더인지 파일인지 판단
if( [fileManager fileExistsAtPath:
[rootDir stringByAppendingPathComponent:path] isDirectory:&flag] ){
NSLog(@"%@ 이름 : %@", (flag ? (@"[폴더]") : (@"[파일]") ), path );
}
}
'프로그래밍 > iOS' 카테고리의 다른 글
푸시 메시지 포맷 (0) | 2012.02.07 |
---|---|
NSNotification (0) | 2012.02.07 |
페이스북 담벼락과 연동되는 아이폰 앱 만들기 (2) | 2012.02.07 |
전국 광역시도 위도 경도 delta 값 (0) | 2012.02.07 |
맵뷰 핀 클릭시 이미지 비동기로 불러오기 (0) | 2012.02.07 |