document 썸네일형 리스트형 iOS 파일 관련 정리 File이 있는지 체크하기NSFileManager *filemgr; filemgr = [NSFileManager defaultManager]; if ([filemgr fileExistsAtPath: @"/tmp/myfile.txt" ] == YES) NSLog (@"File exists"); else NSLog (@"File not found");File 옮기기NSFileManager *filemgr; filemgr = [NSFileManager defaultManager]; if ([filemgr moveItemAtPath: @"/tmp/myfile.txt" toPath: @"/tmp/newfile.txt" error: NULL] == YES) NSLog (@"Move successful"); else.. 더보기 이전 1 다음