티스토리 뷰
728x90
반응형
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
NSFileManager * fileManager = [NSFileManager defaultManager];
NSString *currentPath = [fileManager currentDirectoryPath];
NSArray *dirPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentPath = [dirPath objectAtIndex:0];
NSLog(@"currentPath %@", currentPath);
NSLog(@"documentPath %@", documentPath);
if ([fileManager changeCurrentDirectoryPath:documentPath] == NO){
// 폴더 이동 못함
} else {
// 폴더 이동함
NSLog(@"폴더 이동");
}
char *bytes = "1234";
NSData *data = [[NSData alloc]initWithBytes:bytes length:4];
[fileManager createFileAtPath:@"test.txt" contents:data attributes:nil];
}
반응형
'모바일 프로그래밍' 카테고리의 다른 글
Android Studio jar 라이브러리 파일 생성하기 (0) | 2016.05.28 |
---|---|
Android 6.0 Dangerous permissions (0) | 2016.04.26 |
iOS UIImage에 CoreGraphics로 그리기 (0) | 2016.04.26 |
iOS ARC 프로젝트에서 non-ARC 소스 컴파일하기(-fno-objc-arc) (0) | 2016.04.26 |
iOS 개발시 스토리보드 제거하기 (0) | 2016.04.25 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday