码迷,mamicode.com
首页 > 其他好文 > 详细

NSFileManager

时间:2015-01-31 16:19:31      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:ios   ios开发   objective-c   apple   xcode   

iPhone文件系统:创建、重命名以及删除文件,NSFileManager中包含了用来查询单词库目录、创建、重命名、删除目录以及获取/设置文件属性的方法(可读性,可编写性等等)。

每个程序都会有它自己的沙盒,通过它你可以阅读/编写文件。写入沙盒的文件在程序的进程中将会保持稳定,即便实在程序更新的情况下。

如下所示,你可以在沙盒中定位文件目录:

  1. //对于错误信息  
  2. NSError *error;  
  3. // 创建文件管理器  
  4. NSFileManager *fileMgr = [NSFileManagerdefaultManager];  
  5. //指向文件目录  
  6. NSString *documentsDirectory= [NSHomeDirectory()   
  7. stringByAppendingPathComponent:@"Documents"];  
  8.  
  9. //创建一个目录  
  10. [[NSFileManager defaultManager]   createDirectoryAtPath: [NSString stringWithFormat:@"%@/myFolder", NSHomeDirectory()] attributes:nil]; 

创建一个文件

现在我们已经有了文件目录,我们就能使用这个路径在沙盒中创建一个新文件并编写一段代码:

  1. // File we want to create in the documents directory我们想要创建的文件将会出现在文件目录中  
  2. // Result is: /Documents/file1.txt结果为:/Documents/file1.txt  
  3. NSString *filePath= [documentsDirectory  
  4. stringByAppendingPathComponent:@"file1.txt"];  
  5. //需要写入的字符串  
  6. NSString *str= @"iPhoneDeveloper Tips\nhttp://iPhoneDevelopTips,com";  
  7. //写入文件  
  8. [str writeToFile:filePath atomically:YES   
  9. encoding:NSUTF8StringEncoding error:&error];  
  10. //显示文件目录的内容  
  11. NSLog(@"Documentsdirectory: %@",  
  12. [fileMgr contentsOfDirectoryAtPath:documentsDirectoryerror:&error]); 

我们为想要创建的文件构建一条路径(file1.txt),初始化一个字符串来写入文件,并列出目录。最后一行显示了在我们创建文件之后出现在文件目录下的一个目录列表:

对一个文件重命名

想要重命名一个文件,我们需要把文件移到一个新的路径下。下面的代码创建了我们所期望的目标文件的路径,然后请求移动文件以及在移动之后显示文件目录。

  1. //通过移动该文件对文件重命名  
  2. NSString *filePath2= [documentsDirectory  
  3. stringByAppendingPathComponent:@"file2.txt"];  
  4. //判断是否移动  
  5. if ([fileMgr moveItemAtPath:filePath toPath:filePath2 error:&error] != YES)  
  6. NSLog(@"Unable to move file: %@", [error localizedDescription]);  
  7. //显示文件目录的内容  
  8. NSLog(@"Documentsdirectory: %@",   
  9. [fileMgr contentsOfDirectoryAtPath:documentsDirectoryerror:&error]); 

在移动了文件之后,输出结果应该如下图所示:

删除一个文件

为了使这个技巧完整,让我们再一起看下如何删除一个文件:

  1. //在filePath2中判断是否删除这个文件  
  2. if ([fileMgr removeItemAtPath:filePath2 error:&error] != YES)  
  3. NSLog(@"Unable to delete file: %@", [error localizedDescription]);  
  4. //显示文件目录的内容  
  5. NSLog(@"Documentsdirectory: %@",  
  6. [fileMgr contentsOfDirectoryAtPath:documentsDirectoryerror:&error]); 

一旦文件被删除了,正如你所预料的那样,文件目录就会被自动清空:

这些示例能教你的,仅仅只是文件处理上的一些皮毛。想要获得更全面、详细的讲解,你就需要掌握NSFileManager文件的知识。

在开发iPhone程序时,有时候要对文件进行一些操作。而获取某一个目录中的所有文件列表,是基本操作之一。通过下面这段代码,就可以获取一个目录内的文件及文件夹列表。

  1. NSFileManager *fileManager = [NSFileManager defaultManager];  
  2. //在这里获取应用程序Documents文件夹里的文件及文件夹列表  
  3.         NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);  
  4.         NSString *documentDir = [documentPaths objectAtIndex:0];  
  5.         NSError *error = nil;  
  6.         NSArray *fileList = [[NSArray alloc] init];  
  7. //fileList便是包含有该文件夹下所有文件的文件名及文件夹名的数组  
  8.         fileList = [fileManager contentsOfDirectoryAtPath:documentDir error:&error]; 

以下这段代码则可以列出给定一个文件夹里的所有子文件夹名

  1. NSMutableArray *dirArray = [[NSMutableArray alloc] init];  
  2.         BOOL isDir = NO;  
  3. //在上面那段程序中获得的fileList中列出文件夹名  
  4.         for (NSString *file in fileList) {  
  5.                 NSString *path = [documentDir stringByAppendingPathComponent:file];  
  6.                 [fileManager fileExistsAtPath:path isDirectory:(&isDir)];  
  7.                 if (isDir) {  
  8.                         [dirArray addObject:file];  
  9.                 }  
  10.                 isDir = NO;  
  11.         }  
  12.         NSLog(@"Every Thing in the dir:%@",fileList);  
  13.         NSLog(@"All folders:%@",dirArray); 

获取文件各项属性方法  

-(NSData *)applicationDataFromFile:(NSString *)fileName
{
    NSArray *paths =NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,YES);
    NSString *documentsDirectory =[paths objectAtIndex:0];
    NSString *appFile =[documentsDirectory stringByAppendingPathComponent:fileName];
    NSData *data =[[[NSData alloc]initWithContentsOfFile:appFile]autorelease];
    return data;
}


-(void)getFileAttributes
{
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *path = @"/1ct.rtf";
NSDictionary *fileAttributes = [fileManager fileAttributesAtPath:path traverseLink:YES];
    NSLog(@"@@");
if (fileAttributes != nil) {
    NSNumber *fileSize;
    NSString *fileOwner, *creationDate;
    NSDate *fileModDate;
    //NSString *NSFileCreationDate

//文件大小
    if (fileSize = [fileAttributes objectForKey:NSFileSize]) {
        NSLog(@"File size: %qi\n", [fileSize unsignedLongLongValue]);
    }

//文件创建日期
    if (creationDate = [fileAttributes objectForKey:NSFileCreationDate]) {
        NSLog(@"File creationDate: %@\n", creationDate);
        //textField.text=NSFileCreationDate;
    }

//文件所有者
    if (fileOwner = [fileAttributes objectForKey:NSFileOwnerAccountName]) {
        NSLog(@"Owner: %@\n", fileOwner);
    }

//文件修改日期
    if (fileModDate = [fileAttributes objectForKey:NSFileModificationDate]) {
        NSLog(@"Modification date: %@\n", fileModDate);
    }
 }
else {
    NSLog(@"Path (%@) is invalid.", path);
   }
}

 

 

///////////////////

文件类型,文件缩略图呢???

 

============================

//获取当前应用程序的主目录
NSString directoryPath =NSHomeDirectory();


//获取当前目录下的所有文件
NSArray directoryContents = [[NSFileManager defaultManager] directoryContentsAtPath: directoryPath];

 

//获取一个文件或文件夹
NSString *selectedFile = (NSString*)[directoryContents objectAtIndex: indexPath.row];


//拼成一个完整路径
[directoryPath stringByAppendingPathComponent: selectedFile];

BOOL isDir;

//判断是否是为目录

if ([[NSFileManager defaultManager] fileExistsAtPath:selectedPath isDirectory:&isDir] && isDir)

{//目录
}

else

{//文件
}

//日期格式化
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];

[dateFormatter setDateStyle:NSDateFormatterMediumStyle];

[dateFormatter setTimeStyle:NSDateFormatterNoStyle];

//数字格式化

NSNumberFormatter *numberFormatter =[[NSNumberFormatter alloc] init];

[numberFormatter setPositiveFormat: @"#,##0.## bytes"];

//获取文件属性

NSDictionary *fileAttributes =[[NSFileManager defaultManager] fileAttributesAtPath: directoryPath traverseLink: YES];

//获取文件的创建日期

NSDate *modificationDate = (NSDate*)[fileAttributes objectForKey: NSFileModificationDate];

//获取文件的字节大小

NSNumber *fileSize = (NSNumber*)[fileAttributes objectForKey: NSFileSize];
//格式化文件大小
  NSString A  = [numberFormatter stringFromNumber: fileSize];

//格式化文件创建日期

NSstring B =[dateFormatter stringFromDate: modificationDate];

[numberFormatter release];

[dateFormatter release];

//读取文件内容操作
- (void) loadFileContentsIntoTextView

{

//通过流打开一个文件

NSInputStream *inputStream = [[NSInputStream alloc] initWithFileAtPath: filePath];

[inputStream open];

NSInteger maxLength = 128;

uint8_t readBuffer [maxLength];

//是否已经到结尾标识

BOOL endOfStreamReached = NO;

// NOTE: this tight loop will block until stream ends

while (! endOfStreamReached)

{

NSInteger bytesRead = [inputStream read: readBuffer maxLength:maxLength];

if (bytesRead == 0)

{//文件读取到最后

endOfStreamReached = YES;

}

else if (bytesRead == -1)

{//文件读取错误

endOfStreamReached = YES;

}

else

{

NSString *readBufferString =[[NSString alloc] initWithBytesNoCopy: readBuffer length: bytesRead encoding: NSUTF8StringEncoding freeWhenDone: NO];   

//将字符不段的加载到视图

[self appendTextToView: readBufferString];

[readBufferString release];

}

}

[inputStream close];

[inputStream release];

}

异步文件读取  在网络方面,网络的不可靠性可能会造成上面方法的阻塞

nsstream是可以异步工作的。可以注册一个在流中有字节可读的时候回调的函数,如果没有可读的,就不要阻塞住。

NSFileManager

标签:ios   ios开发   objective-c   apple   xcode   

原文地址:http://blog.csdn.net/hnjyzqq/article/details/43341311

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!