Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 메모리
- Objective C
- ios
- 티스토리 초대장
- XML
- ipad
- UIWebView
- HTML
- 이클립스
- 한글
- WebView
- MySQL
- iphone
- Eclipse
- Android
- udp
- JavaScript
- 티스토리 초대
- permgen space
- 톰켓
- java
- C#
- encoding
- Tomcat
- spring
- Database
- 인코딩
- Memory
- jQuery
- jsp
Archives
- Today
- Total
suroMind
[iPhone]디렉토리 목록 조회 본문
NSFileManager* fileManager = [NSFileManager defaultManager];
NSString* rootDir = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
DebugLog(@"aaaa %@", rootDir);
NSString *fileName;
NSDirectoryEnumerator* enumDir= [fileManager enumeratorAtPath: rootDir]];
while((fileName = [enumDir nextObject])) {
DebugLog(@"tttt == %@", fileName);
}
'IT분야 > iOS' 카테고리의 다른 글
[iPhone]XCode4 프로젝트에서 Missing File 출력될 시 (0) | 2011.06.29 |
---|---|
[iPhone]UIWebView에서 Safari 새창 띄우기 (2) | 2011.06.24 |
[iPhone]iOS 계열 디바이스 구분 (2) | 2011.05.19 |
[iPhone]아이폰/아이패드 배포시 이미지 (0) | 2011.05.17 |
[iPhone] UIWebView bounce 없애기 (0) | 2011.05.09 |
Comments