기본 번들 디렉토리 가져오기
NSString *bundlePath = [[NSBundle mainBundle] bundlePath];
디렉토리내 파일리스트 가져오기
NSArray *arrContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:bundlePath error:nil];
for (NSString *strFileName in arrContents) {
NSLog(@"filename--> %@", strFileName);
}
'Dev > iOS' 카테고리의 다른 글
[iOS/기타] OSX Lion 에서 Xcode4 설치시, itunes 오류 뜰 때, 해결법 (0) | 2011.08.02 |
---|---|
[Objective-C] CGRect, CGPoint, CGSize (0) | 2011.07.20 |
[Objective-C] 메서드 확장 (0) | 2011.06.27 |
[Objective-C] 터치 제스쳐(Gesture) 종류 (0) | 2011.06.20 |
[Objective-C] 문자열 잘라서 배열(NSArray)에 넣기 (0) | 2011.06.02 |