반응형

Symbolic Link 만들기.

IPHONE 2014. 1. 7. 11:48
반응형

   // Symbolic Link 만들기.
    NSFileManager *filemgr = [NSFileManager defaultManager];
   
    if ([filemgr createSymbolicLinkAtPath:@"filePath" withDestinationPath:@"destinationPath" error:NULL] == YES)
    {
        NSLog(@"successful");
    }
    else
    {
        NSLog(@"Failed");
    }

반응형

'IPHONE' 카테고리의 다른 글

NSFileHandle 클래스로 파일 작업하기.  (0) 2014.01.07
NSFileManager로 파일 읽고 쓰기.  (0) 2014.01.07
파일 제거하기.  (0) 2014.01.07
파일 복사하기.  (0) 2014.01.07
파일 옮기기와 이름 바꾸기.  (0) 2014.01.07
Posted by 컴스터
,

파일 제거하기.

IPHONE 2014. 1. 7. 11:42
반응형

    // 파일 제거하기.
    NSFileManager *filemgr = [NSFileManager defaultManager];
   
    if ([filemgr removeItemAtPath:@"filePath" error:NULL] == YES)
    {
        NSLog(@"Remove successful");
    }
    else
    {
        NSLog(@"Remove failed");
    }

반응형
Posted by 컴스터
,

파일 복사하기.

IPHONE 2014. 1. 7. 11:39
반응형

   // 파일 복사하기.
    NSFileManager *filemgr = [NSFileManager defaultManager];
    if ([filemgr copyItemAtPath:@"fromFilePath" toPath:@"toFilePath" error:NULL] == YES)
    {
        NSLog(@"Copy successful");
    }
    else
    {
        NSLog(@"Copy failed");
    }

반응형
Posted by 컴스터
,
반응형

 // 파일 옮기기와 이름 바꾸기.
    NSFileManager *filemgr = [NSFileManager defaultManager];
   
    if ([filemgr moveItemAtPath:@"fromFilePath" toPath:@"toFileName" error:NULL] == YES)
    {
        NSLog(@"Move successful");
    }
    else
    {
        NSLog(@"Move failed");
    }

반응형

'IPHONE' 카테고리의 다른 글

파일 제거하기.  (0) 2014.01.07
파일 복사하기.  (0) 2014.01.07
파일의 Readable/Writable/Executable/Deletable 상태 확인하기.  (0) 2014.01.07
두 파일의 내용 비교하기.  (0) 2014.01.07
파일이 존재하는지 확인하기.  (0) 2014.01.07
Posted by 컴스터
,
반응형

// 파일의 Readable/Writable/Executable/Deletable 상태 확인하기.
    NSFileManager *filemgr = [NSFileManager defaultManager];
    if ([filemgr isWritableFileAtPath:@"filePath"] == YES)
    {
        NSLog(@"File is writable");
    }
    else
    {
        NSLog(@"File is read only");
    }
   
    isReadableFileAtPath, isWritableFileAtPath, isExecutableFileAtPath

반응형

'IPHONE' 카테고리의 다른 글

파일 복사하기.  (0) 2014.01.07
파일 옮기기와 이름 바꾸기.  (0) 2014.01.07
두 파일의 내용 비교하기.  (0) 2014.01.07
파일이 존재하는지 확인하기.  (0) 2014.01.07
디렉터리 내용 목록 표시하기.  (0) 2014.01.06
Posted by 컴스터
,
반응형

    // 두 파일의 내용 비교하기.
    NSFileManager *filemgr = [NSFileManager defaultManager];
    if ([filemgr contentsEqualAtPath:@"fileName1" andPath:@"fileName2"] == YES)
    {
        NSLog(@"File contents match");
    }
    else
    {
        NSLog(@"File contents do not match");
    }

반응형
Posted by 컴스터
,
반응형

// 파일이 존재하는지 확인하기.
    NSFileManager *filemgr = [NSFileManager defaultManager];
    if ([filemgr fileExistsAtPath:@"fileName"] == YES)
    {
        NSLog(@"file exists");
    }
    else
    {
        NSLog(@"File not found");
    }

반응형
Posted by 컴스터
,
반응형

    NSFileManager *filemgr;
    NSArray *filelist;
    int count;
    int i;
   
    filemgr = [NSFileManager defaultManager];
    filelist = [filemgr contentsOfDirectoryAtPath:@"/" error:NULL];
    count = [filelist count];
   
    for(i = 0; i < count; i++)
    {
        NSLog(@"%@", filelist[i]);
    }

반응형
Posted by 컴스터
,
반응형

[self.tableView setContentInset:UIEdgeInsetsMake(22,
                                                     self.tableView.contentInset.left,
                                                     self.tableView.contentInset.bottom,
                                                     self.tableView.contentInset.right)];

반응형
Posted by 컴스터
,
반응형

[self performSegueWithIdentifier:@"SegueIdentifier" sender:self];

반응형
Posted by 컴스터
,


반응형