iOS-沙盒路径总结、文件管理NSFileManager总结
//
// ViewController.m
// 沙盒操作
//
// Created by mncong on 15/11/26.
// Copyright © 2015年 mancong. All rights reserved.
//
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
//到达沙盒根路径
[self getHomePath];
//获取Document路径
[self getDocumentsPath];
//获取Library目录路径
[self getLibraryPath];
//获取Library中的Cache路径
[self getCachePath];
//获取temp路径
[self getTempPath];
//NSString类路径的处理
[self dealWithPath];
//NSData处理
[self dealWithData];
//文件管理
[self dealWithNSaFileManager];
//获取文件中文件和文件列表
[self getDirectorys];
}
- (void)getHomePath
{
NSString * homePath = NSHomeDirectory();
NSLog(@"app_home: %@",homePath);
}
- (NSString *)getDocumentsPath
{
NSArray * pathsArr = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSLog(@"%@",pathsArr);
NSString * documentsPath = [pathsArr lastObject];
NSLog(@"app_documentsPath: %@",documentsPath);
return documentsPath;
}
- (void)getLibraryPath
{
NSArray * pathsArr = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
NSString * documentsPath = [pathsArr lastObject];
NSLog(@"app_documentsPath: %@",documentsPath);
}
- (void)getCachePath
{
NSArray * pathsArr = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
NSString * cachePath = [pathsArr lastObject];
NSLog(@"cachePath: %@",cachePath);
}
- (void)getTempPath
{
NSString * tempPath = NSTemporaryDirectory();
NSLog(@"app_tempPath: %@",tempPath);
}
- (void)dealWithPath
{
//操作的路径
NSString * path = @"/Users/apple/testfile.text";
//获取此路径的各个组成部分
NSArray * arr = [path pathComponents];
NSLog(@"%@",arr);
//提取此路径的最后一个组成部分
NSString * lastComponent = [path lastPathComponent];
NSLog(@"%@",lastComponent);
//删除路径的最后一个组成部分
NSString * deleteLastComponent = [path stringByDeletingLastPathComponent];
NSLog(@"%@",deleteLastComponent);
//将path添加到先邮路径的末尾
NSString * addPathToPath = [path stringByAppendingPathComponent:path];
NSLog(@"%@",addPathToPath);
//去除路径最后部分的扩展名
NSString * extension = [path pathExtension];
NSLog(@"%@",extension);
//删除路径最后部分的扩展名
NSString * deletePathExtension = [path stringByDeletingPathExtension];
NSLog(@"%@",deletePathExtension);
//路径最后部分追加扩展名(注意:方法已经拼接了一个点号了,不要再加了)
NSString * appendExtension = [path stringByAppendingPathExtension:@"jpg"];
NSLog(@"%@",appendExtension);
}
- (void)dealWithData
{
//1.NSString与NSData转换
NSString * string1 = @"1234abcd";
NSData * data1 = [string1 dataUsingEncoding:NSUTF8StringEncoding];
NSLog(@"data1: %@",data1);
NSString * string2 = [[NSString alloc] initWithData:data1 encoding:NSUTF8StringEncoding];
NSLog(@"string2: %@",string2);
//2.NSData与UIImage
//拼接在本工程下的路径
NSString * path = [[NSBundle mainBundle] bundlePath];
NSString * name = [NSString stringWithFormat:@"1.jpg"];
NSString * finalPath = [path stringByAppendingPathComponent:name];
//把路径改为NSData类型
NSData * imageData = [NSData dataWithContentsOfFile:finalPath];
//获取图片
UIImage * image = [UIImage imageWithData:imageData];
//显示在UIimageView上
UIImageView * imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 200)];
imageView.image = image;
[self.view addSubview:imageView];
}
- (void)dealWithNSaFileManager
{
NSError * error;
//创建文件管理
NSFileManager * fileManager = [NSFileManager defaultManager];
//指向文档目录
NSString * documentsDirectory = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
NSLog(@"documentsDirectory: %@",documentsDirectory);
//创建一个目录
#warning format之后什么意思 以及后面的参数
[[NSFileManager defaultManager] createDirectoryAtPath:[NSString stringWithFormat:@"%@/myFolder",NSHomeDirectory()] withIntermediateDirectories:YES attributes:nil error:&error];
//1.创建一个文件
NSString * filePath = [documentsDirectory stringByAppendingPathComponent:@"file1.txt"];
NSLog(@"filePath: %@",filePath);
NSString * str = @"需要写入的字符串";
//写入文件
[str writeToFile:filePath atomically:YES encoding:NSUTF8StringEncoding error:&error];
//显示文件目录的内容
NSLog(@"documentsDirectory: %@",[fileManager contentsOfDirectoryAtPath:documentsDirectory error:&error]);
//2.对一个文件重命名
NSString * filePath2 = [documentsDirectory stringByAppendingPathComponent:@"file2.text"];
NSLog(@"%@",filePath2);
if ([fileManager moveItemAtPath:filePath toPath:filePath2 error:&error] != YES)
NSLog(@"Unable to mnove file: %@",error.localizedDescription);
NSLog(@"DocumentsDirectory: %@",[fileManager contentsOfDirectoryAtPath:documentsDirectory error:&error]);
//3.删除一个文件
if ([fileManager removeItemAtPath:filePath2 error:&error] != YES)
NSLog(@"Unable to delete file:%@",error.localizedDescription);
NSLog(@"Documentsdirectory: %@",[fileManager contentsOfDirectoryAtPath:documentsDirectory error:&error]);
}
- (void)getDirectorys
{
NSFileManager * fileManager = [NSFileManager defaultManager];
NSArray * documentsPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString * documentsDirectory = [documentsPaths objectAtIndex:0];
NSError * error = nil;
NSArray * fileList = [NSArray array];
fileList = [fileManager contentsOfDirectoryAtPath:documentsDirectory error:&error];
NSLog(@"fileList: %@",fileList);
//列出给定一个文件夹里的所有子文件夹名
NSMutableArray * dirArray = [NSMutableArray array];
BOOL isDir = NO;
for (NSString * file in fileList) {
NSString * path = [documentsDirectory stringByAppendingPathComponent:file];
[fileManager fileExistsAtPath:path isDirectory:(&isDir)];
if (isDir) {
[dirArray addObject:file];
}
isDir = NO;
}
NSLog(@"Every Thing in the Dir: %@",fileList);
NSLog(@"All folders: %@",dirArray);
}
@end
iOS-沙盒路径总结、文件管理NSFileManager总结的更多相关文章
- ios沙盒路径
http://www.cnblogs.com/ios-wmm/p/3299695.html iOS沙盒路径的查看和使用 NSString *path = NSHomeDirectory();//主目录 ...
- iOS 沙盒路径获取,创建文件
沙盒下主要有四个文件夹:document,caches,tmp,library document 的路径 程序运行时生成的文件,这个文件不要存比较放大的文件,比如音频,视频类,因为这里的东西会被上传 ...
- iOS沙盒路径的查看和使用
1.模拟器沙盒目录 文件都在个人用户名文件夹下的一个隐藏文件夹里,中文叫资源库,他的目录其实是Library. 因为应用是在沙箱(sandbox)中的,在文件读写权限上受到限制,只能在几个目录下读写文 ...
- iOS沙盒路径变化的说明详解
最近用沙盒存储文件的时候发现了一个奇怪的现象,由于业务需要,我会将保存的文件绝对路径保存以便下次读取. 于是发现一个找不到的现象,即上一次保存下的绝对路径,再第二次打开app去查找的时候,发现找不到. ...
- iOS 沙盒路径操作:新建/删除文件和文件夹
http://blog.csdn.net/totogo2010/article/details/7671144
- iOS创建、删除文件夹、获取沙盒路径
1.获取沙盒路径 // 获取沙盒路径 NSString *documentsDirectory = [NSHomeDirectory() stringByAppendingPathComponent: ...
- iOS之沙盒机制和如何获取沙盒路径
iOS APP可以在自己的沙盒里读写文件,但是,不可以访问其他APP的沙盒.每一个APP都是一个信息孤岛,相互是不可以进行通信的,唯独可以通过URL Scheme.沙盒里面的文件可以是照片.声音文件. ...
- iOS - 沙盒机制(SandBox)和获取沙盒路径
iOSAPP可以在自己的沙盒里读写文件,但是,不可以访问其他APP的沙盒.每一个APP都是一个信息孤岛,相互是不可以进行通信的,唯独可以通过URLScheme.沙盒里面的文件可以是照片.声音文件.文本 ...
- iOS沙盒(sandbox)机制及获取沙盒路径
一.每个iOS应用SDK都被限制在沙盒中,沙盒相当于一个加了仅主人可见权限的文件夹,苹果对沙盒有以下几条限制. (1).应用程序可以在自己的沙盒里运作,但是不能访问任何其他应用程序的沙盒. (2).应 ...
- iOS沙盒(sandbox)机制及获取沙盒路径
一. 每个iOS应用SDK都被限制在“沙盒”中,“沙盒”相当于一个加了仅主人可见权限的文件夹,苹果对沙盒有以下几条限制. (1)应用程序可以在自己的沙盒里运作,但是不能访问任何其他应用程序的沙盒. ( ...
随机推荐
- 用Wireshark提取WPA握手包
进入正文前,先来看一张截图,如图1,使用“aircrack-ng wpa.cap -w password.lst”命令后,程序会提示输入待破解网络的序号,此时只要提供一个序号即可.注意:1:命令中不需 ...
- 解决chi_sim.traineddata报read_params_file: parameter not found: allow_blob_division
在使用语音库时候 遇到报错:allow_blob_division,例如使用chi_sim.traineddata;在chi_sim.traineddata(注意版本)文件目录下,使用命令行执行: c ...
- Sicily 3913. 阶乘之和
http://soj.me/3913 一开始被它的数据吓到了,还以为很复杂,但想清楚之后,确实是比较简单的,你只需要算到 24! 就行了,大于 24 的时候答案永远是 940313,因为我们是对 10 ...
- Activemq消息持久化
官方文档: http://activemq.apache.org/persistence.html ActiveMq持久化相关配置:/usr/local/apache-activemq-5.11.1/ ...
- LINUX系统下添加映射存储LUN
LINUX系统下添加映射存储LUN(无需重启) 背景:Oracle rac环境 添加新实例,重新划分存储空间,从存储映射新的LUN. 问题:映射后,linux操作系统无法识别新的LUN,不能重启系统, ...
- js数据类型判断和数组判断
这么基础的东西实在不应该再记录了,不过嘛,温故知新~就先从数据类型开始吧 js六大数据类型:number.string.object.Boolean.null.undefined string: 由单 ...
- 【网络编程】——windows socket 编程
测试demo #include <winsock2.h> #include <stdio.h> #include <string.h> #include <s ...
- T-SQL 小数点转换百分数
-- ============================================= -- Author: <Author,,CC> -- Create date: <C ...
- 安装mmseg出错 config.status: error: cannot find input file: src/Makefile.in
aclocallibtoolize --forceautomake --add-missingautoconfautoheadermake clean
- dsoframer控件学习小结(打开WORD,EXCEL等文件)
根据自己对dsoframer控件的学习,想把dsoframer控件进行简单的包装为C#的usercontrol,大体需要作如下:(创建windows的usercontrol的步骤就不再说了...)我们 ...