zoukankan      html  css  js  c++  java
  • 笔记:沙盒文件的拷贝

        首先,先总结一下如何获取Documents目录,在ios开发中,我们经常需要检索Documents目录的完整路径以便读取和写入文件,我总结了以下两种方法:
    1、NSString *documentsDirectory = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
    2、NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
       NSString *documentsDirectory = [paths objectAtIndex:0];
     以上documentsDirectory就是获取的Documents的完整路径。
     程序的所有资源文件,存储在程序包中,获取程序包路径的方法是:
    NSString *appDirectory = [[NSBundle mainBundle] bundlePath];
    在实际开发中我们有时需要判断Documents下的某个资源文件是否存在,如果不存在,则从程序包中拷贝进去,现在假设要判定的文件是"xxx.txt",判定代码如下:
    NSFileManager *fileManager = [NSFileManager defaultManager];
    //NSString *filePath = [self [documentsDirectory stringByAppendingPathComponent:@"xxx.txt"]];

    NSString *filePath = [documentsDirectory stringByAppendingPathComponent:@"xxx.txt"];

    if(![fileManager fileExistsAtPath:filePath]) //如果不存在
    {
         NSLog(@"xxx.txt is not exist");
         NSString *dataPath = [[[NSBundle mainBundle] bundlePath] stringByAppendingString:@"/xxx.txt"];//获取程序包中相应文件的路径
         NSError *error;
         if([fileManager copyItemAtPath:dataPath toPath:filePath error:&error]) //拷贝
         {
              NSLog(@"copy xxx.txt success");
         }
         else 
         {
              NSLog(@"%@",error);
         }  
    }

     https://www.cnblogs.com/FBiOSBlog/p/5819418.html

    https://blog.csdn.net/csdn_hhg/article/details/80458646

    https://www.jianshu.com/p/2d0ad82c59fa//读写

  • 相关阅读:
    海康威视复赛题
    [转] A*寻路算法C++简单实现
    [转]程序进行性能分析工具gprof使用入门
    [转]KMP 算法
    boolalpha的用法和作用
    python与数据科学有多少“暧昧情事”?14个Q&A告诉你
    Python来袭,教你用Neo4j构建“复联4”人物关系图谱!
    深入理解BERT Transformer ,不仅仅是注意力机制
    Python开发者年度调研,结果出乎意料!
    R和Python,对抗or融合?
  • 原文地址:https://www.cnblogs.com/sheer-code/p/10304173.html
Copyright © 2011-2022 走看看