沙盒

作者: 雨沫的鱼 | 来源:发表于2016-08-12 10:08 被阅读6次

    NSString *rootPath=NSHomeDirectory();

    NSLog(@"根目录:%@",rootPath);

    //查找documents文件夹路径

    //    NSString *documentsPath=[NSString stringWithFormat:@"%@/Documents",rootPath];

    //NSString类提供了快捷的方式完成***/**这种拼接模式

    NSString *documentsPath=[rootPath stringByAppendingPathComponent:@"Documents"];

    NSLog(@"Documents:%@",documentsPath);

    //获取library文件夹路径

    NSString *libraryPath=[rootPath stringByAppendingPathComponent:@"Library"];

    NSLog(@"Library:%@",libraryPath);

    //tmp文件夹路径

    NSString *tmpPath=[rootPath stringByAppendingPathComponent:@"tmp"];

    相关文章

      网友评论

          本文标题:沙盒

          本文链接:https://www.haomeiwen.com/subject/slnssttx.html