Contents

Develop
2013.04.23 18:08

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

Views 33514 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
63 Develop [js] jQuery 관련 문서 ㅎㅎ file hooni 2013.04.23 32001
62 Develop [ios] 개발 기초 가이드 링크.. hooni 2013.04.23 32323
61 Develop [python] DJI Tello 드론 코딩 (프로그래밍) 58 file hooni 2018.03.04 32592
60 Develop [ios] 소소한 팁 (Rect,Point,Path,URL 등) hooni 2013.08.08 32640
59 Develop [js] 키보드 아스키코드(ASCII) 코드보기 hooni 2003.04.23 33410
» Develop [ios] 디렉토리 하하하.. hooni 2013.04.23 33514
57 Develop [c] C로 구현한 CGI - 달력과 날짜계산기 file hooni 2003.04.23 33596
56 Develop [android] 디바이스(시뮬레이터) hosts 파일 수정하기 hooni 2013.04.23 33714
55 Develop [js] jQuery 코드 작성시 편리한 HTML 템플릿 hooni 2013.12.17 34229
54 Develop [c] C로 구현한 CGI - 방명록 file hooni 2003.04.23 34457
53 Develop [js] 웹페이지에서 특정 엘리먼트 드래그, 복사, 컨텍스트메뉴, 키보드 막기 hooni 2013.11.04 34792
52 Develop [c++] 웹폼(webform)전송과 http 파일 업로드 샘플 file hooni 2013.04.23 34991
Board Pagination Prev 1 ... 61 62 63 64 65 66 67 68 69 70 71 Next
/ 71