求知 文章 文库 Lib 视频 iPerson 课程 认证 咨询 工具 讲座 Model Center   Code  
会员   
 
 
     
   
    全部     工程实例     标准规范     名校讲义     知识库    
 
 

iOS教程
iOS (iPhone, iPad)教程
IOS - 快速入门
IOS - 开发环境配置
iOS - Objective-C基础
iOS - 创建第一个
IOS - 动作和插座
iOS - Delegates实例
iOS - UI元素
iOS - Accelerometer(加
IOS - 通用应用程序
IOS - 摄像头管理
iOS - 位置处理
iOS - SQLite 数据库
iOS - 发送电子邮箱
iOS - 音频和视频
IOS - 文件处理
IOS - 访问地图
iOS - 应用程序内购买
iOS - iAd 整合
 
 

IOS - 文件处理

    您可以捐助,支持我们的公益事业。

金额: 1元 10元 50元

姓名:

邮件:

电话:

公司:

说明:

认证码: 验证码,看不清楚?请点击刷新验证码 必填



 
 捐助

简介

文件处理不能直观地与应用程序进行说明,因此,用于处理文件的主要方法解释如下。请注意,应用程序包只有读取权限,我们不会修改文件。无论如何,我们可以修改应用程序的文件目录。

文件处理的方法

下面列出了用于访问和操作文件的方法的列表中。下面我们就来替换,FilePath2 FILEPATH 和 FilePath1字符串到我们所需的完整的文件路径,以获得所需的动作

检查文件是否存在一个路径中

NSFileManager *fileManager = [NSFileManager defaultManager];
//Get documents directory
NSArray *directoryPaths = NSSearchPathForDirectoriesInDomains
(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectoryPath = [directoryPaths objectAtIndex:0];
if ([fileManager fileExistsAtPath:@""]==YES) {
NSLog(@"File exists");
}

比较两个文件的内容

if ([fileManager contentsEqualAtPath:@"FilePath1" andPath:@" FilePath2"]) {
NSLog(@"Same content");
}

检查是否可写,可读和可执行

if ([fileManager isWritableFileAtPath:@"FilePath"]) {
NSLog(@"isWritable");
}
if ([fileManager isReadableFileAtPath:@"FilePath"]) {
NSLog(@"isReadable");
}
if ( [fileManager isExecutableFileAtPath:@"FilePath"]){
NSLog(@"is Executable");
}

移动文件

if([fileManager moveItemAtPath:@"FilePath1" 
toPath:@"FilePath2" error:NULL]){
NSLog(@"Moved successfully");
}

复制文件

if ([fileManager copyItemAtPath:@"FilePath1" 
toPath:@"FilePath2" error:NULL]) {
NSLog(@"Copied successfully");
}

删除文件

if ([fileManager removeItemAtPath:@"FilePath" error:NULL]) {
NSLog(@"Removed successfully");
}

读取文件

 NSData *data = [fileManager contentsAtPath:@"Path"];

写文件

[fileManager createFileAtPath:@"" contents:data attributes:nil];

接下来是什么?

我们已经成功地了解各种文件访问和操纵技术,现在可以做各种操作文件和使用。


    您可以捐助,支持我们的公益事业。

金额: 1元 10元 50元

姓名:

邮件:

电话:

公司:

说明:

认证码: 验证码,看不清楚?请点击刷新验证码 必填



 
 捐助