zoukankan      html  css  js  c++  java
  • 沙盒文件的创建(简单举例)

    //创建文件
    NSString *documentsDirectory = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
        NSFileManager *fileManager = [NSFileManager defaultManager];
        NSString *filePath = [documentsDirectory stringByAppendingPathComponent:@"xxx.txt"];
        NSLog(@"-----%@",filePath);
        if(![fileManager fileExistsAtPath:filePath]) //如果文件xxx不存在
        {
            NSLog(@"xxx.txt is not exist");
            if( [fileManager createFileAtPath:filePath contents:nil attributes:nil]) //创建文件         
                {
                 //
                }
          }
          else {
                     //
          }
    
    //数据写入文件
      NSString *buf=@"数据";
                    [buf writeToFile:filePath atomically:YES encoding:NSUTF8StringEncoding error:nil];
    
    //从文件读数据
    NSString * buf = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];
  • 相关阅读:
    作业 第四 张垚
    软件测试课堂练习 张垚
    增删改查
    计算器 作业
    activity 张垚
    第四作业 张垚
    第六周作业
    jsp第四周作业
    jsp求1-100之间的素数和
    JSP第一次测试
  • 原文地址:https://www.cnblogs.com/sheer-code/p/10483210.html
Copyright © 2011-2022 走看看