Contents

Develop
2013.04.23 18:08

[ios] 디렉토리 하하하..

Views 32660 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

디렉토리 탐색하는 샘플 코드~

NSString *newDir;
if( parent_dir > 0 ){
    newDir = [NSString stringWithFormat:@"NToon/%d", parent_dir];
}else{
    newDir = @"NToon";
}

NSString *newPath = [documentsDirectory stringByAppendingPathComponent:newDir];

if (![fileManager fileExistsAtPath:newPath]) {
    if ([fileManager createDirectoryAtPath:newPath withIntermediateDirectories:YES attributes:nil error:&error]) {
        //NSLog(@"getDBFilePath: %@ created.", newPath);
    } else {
        NSLog(@"getDBFilePath: Failed to create %@ due to %@", newPath, error);
    }
}

?

List of Articles
No. Category Subject Author Date Views
61 Develop [android] AlertDialog 메시지 창 띄우기 hooni 2015.07.09 982
60 Develop [ios] UIWebView에서 로컬에 있는 html 파일 불러오기 hooni 2015.02.10 976
59 Develop [c] 이진 탐색 두 가지 코드 (재귀/반복) file hooni 2015.06.26 974
58 Develop [ios] 아이폰 앱 이름 및 버전 정보 hooni 2015.03.24 970
57 Develop [c] 기막힌 정렬 코드 ㅋㄷ file hooni 2015.10.13 966
56 Develop [git] 쉬운 버전관리 Git 설명 hooni 2015.08.18 961
55 Develop [android] N-Puzzle 게임 file hooni 2015.07.09 959
54 Develop [ios] NSString, RegularExpression Find/Replace hooni 2017.04.14 956
53 Develop [android] Android N requires the IDE to be running with Java 1.8 or later 오류 hooni 2016.08.30 951
52 Develop Aspect Oriented Programming in Objective-C hooni 2015.05.18 947
51 Develop [ios] iOS 앱 아이콘을 만드는 유틸 file hooni 2015.01.03 945
50 Develop [io] Apple Watch, Today Extension 앱ID 설정 hooni 2016.04.20 939
Board Pagination Prev 1 ... 61 62 63 64 65 66 67 68 69 70 71 Next
/ 71