IOS之Objectivc-c获取本地存储路径

很多时候我们需要找到ios模拟器,在本地沙盒的路径,但是往往很难找到,于是写了一行代码,打印输出路径,进入finder, 找到此文件夹。


NSString *path = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];

    NSLog(@"%@", path);

你可能感兴趣的:(ios)