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)应用程序可以在自己的沙盒里运作,但是不能访问任何其他应用程序的沙盒. ( ...
随机推荐
- windows & mac 安装lua
mac从源码编译安装是最方便的,lua源码不足两万行,编译几秒钟的事. 打开terminal,依次输入以下命令: curl -R -O http://www.lua.org/ftp/lua-5.2.3 ...
- iphone/ipad/ipod设置VPN(pptp连接方式)
一.点击桌面上的-设置-图标进入设置(如图) 二.点击-通用-进入通用设置 三.点击-VPN-进入VPN设置(如图) 四.点击添加VPN设置进行设置 五.选择并连接
- No module named flask.ext.sqlalchemy.SQLALchemy
在学习<OReilly.Flask.Web.Development>的时候,按照书的例子到了数据库那一章,在运行python hello.py shell的时候出现了“ImportErro ...
- java web项目启动时自动加载自定义properties文件
首先创建一个类 public class ContextInitListener implements ServletContextListener 使得该类成为一个监听器.用于监听整个容器生命周期的 ...
- android Studio NDK
官方文档地址: https://developer.android.com/studio/projects/add-native-code.html#download-ndk 最近推出CMake方式集 ...
- php 生成 Json
php 生成 Json 部分 <?php $arr_result = array(); //返回值 $arr_result['result'] = '0'; $arr_result['calle ...
- 游戏服务器ID生成器组件
游戏服务器程序中,经常需要生成全局的唯一ID号,这个功能很常用,本文将介绍一种通用ID生成组件.游戏服务器程序中使用此组件的场景有: 创建角色时,为其分配唯一ID 创建物品时,每个物品需要唯一ID 创 ...
- post 的body json要使用双引号,而不是单引号
string parse error , JS eval error {'name' : 'wade' } http://json.parser.online.fr/ string parse ...
- SRM 591 div1 275
topcoder被Appirio收购了 好久没做tc,这个题目挺简单.就是Arena里面看不到图片,只能去tc网站上找题目.http://community.topcoder.com/stat?c= ...
- IIS 日志文件分析
先安装下文参考资料中的log parser studio 然后就可以针对日志文件进行sql语句的查询了. 各页面访问量排行 ) FROM '[LOGFILEPATH]' where cs-uri-st ...