일상+

NSFileManager 관련 내용 본문

iPhone

NSFileManager 관련 내용

이종준 2011. 10. 19. 16:41
- Document에 폴더가 있는지 여부 확인

NSString *docUrl = [NSHomeDirectory() stringByAppendingPathComponent:  @"Documents"];

if([[NSFileManager defaultManager] fileExistsAtPath:docUrl])
{
 
NSLog(@"존재함");
}else{
            NSLog(@"존재하지 않음"); 
 
 

-  Document에 있는 폴더 삭제 하기
[[NSFileManager defaultManager] removeItemAtPath:docUrl error:nil]; 


- Document에 신규폴더 생성

NSString *new_folder = @"test";
NSString *new_directory_Path
= [[APPLICATION_DOC_DIR stringByAppendingFormat:@"/%@",new_folder]retain];

 
[[NSFileManager defaultManager] createDirectoryAtPath: new_directory_Path withIntermediateDirectories:FALSE attributes:nil error:nil]; 




 
Comments