代码之家  ›  专栏  ›  技术社区  ›  Codebeef

iPhone模拟器在哪里存储数据?

  •  205
  • Codebeef  · 技术社区  · 15 年前

    18 回复  |  直到 15 年前
        1
  •  310
  •   Przemyslaw Jablonski    4 年前

    对于Xcode6+/iOS8+

    ~/Library/Developer/CoreSimulator/Devices/[DeviceID]/data/Containers/data/Application/[AppID]/

    /使用者 该路径中的文件夹,其中包含它可以模拟的每个旧版iPhone OS/iOS版本的编号,因此该路径变为:

    如果同时安装了以前的SDK,其3.1.x模拟器将继续将其数据保存在:

    ~/Library/Application Support/iPhone模拟器/User/Applications/[appGUID]/

        2
  •  108
  •   Sergey Lost    10 年前

    1. 在模拟器中启动应用程序
    2. 打开活动监视器
    3. 双击它并打开“打开文件和端口”

    enter image description here

        3
  •  86
  •   Lal Krishna    3 年前

    1. (或暂停程序执行(点击调试区域中的暂停),如Najdan Tomi在评论中所述)

    2. 进来 po NSHomeDirectory() 在里面 控制台窗口

    结果:

    宝山目录()

        4
  •  77
  •   Codebeef    15 年前

    找到它:

    ~/Library/Application Support/iPhone Simulator/User/
    
        5
  •  75
  •   Wagh    10 年前

    iOS 8

        6
  •  65
  •   tipycalFlow    11 年前

    论狮子 Users/[username]/Library

    要简单地在Finder中查看,请单击屏幕顶部的“Go”菜单并按住“alt”键以显示“Library”。

    单击“库”,您可以看到以前隐藏的库文件夹。

    使用

    chflags nohidden /users/[username]/library
    

        7
  •  44
  •   russbishop    8 年前

    xcrun simctl get_app_container booted <app bundle identifier>
    

    示例输出:

    $ xcrun simctl get_app_container booted com.example.app
    /Users/jappleseed/Library/Developer/CoreSimulator/Devices/7FB6CB8F-63CB-4F27-BDAB-884814DA6FE0/data/Containers/Bundle/Application/466AE987-76BC-47CF-A207-266E65E7DE0A/example.app
    

    “booted”可以替换为大多数 simctl 命令任何需要设备UDID的地方。

    xcrun simctl list 并使用获取有关特定命令的帮助 xcrun simctl help

    使现代化

    要获取数据容器,请执行以下操作:

    $ xcrun simctl get_app_container booted com.example.app data
    
        8
  •  35
  •   BoltClock    10 年前

    对于Xcode 5,您可以使用以下代码:

    #import <Foundation/NSFileManager.h>
    

    以及:

    NSString *homeDir = NSHomeDirectory();
    NSLog(@"%@",homeDir);
    

    "/Users/<your user name>/Library/Application Support/iPhone Simulator/7.1/Applications/hhhhhhhh-hhhh-hhhh-hhhh-hhhhhhhhhhhh"
    

    哪里 hhhhhhhh-hhhh-hhhh-hhhh-hhhhhhhhhhhh

        9
  •  30
  •   awolf    10 年前

    看起来Xcode 6.0再次移动了这个位置,至少对于iOS 8模拟器是这样。

    ~/Library/Developer/CoreSimulator/Devices/[DeviceID]/data/Containers/data/Application/[AppID]

        10
  •  30
  •   Shubhendu    9 年前

    找到应用程序在模拟器中的位置最简单的方法之一。使用者

    台阶-

    1. 在应用程序中的任意位置应用断点并运行应用程序。
    2. po NSTemporaryDirectory()

    enter image description here

    希望这也有帮助。快乐编码:)

        11
  •  10
  •   codejockie    4 年前

    运行时

    $ open ~/Library/Developer/CoreSimulator/Profiles/Runtimes

    例如: iOS 13.0 watchOS 6.0

    装置

    $ open ~/Library/Developer/CoreSimulator/Devices

    iPhone Xr , iPhone 11 Pro Max . 这些通常是<每个15MB。

    解释

    $ xcrun simctl list

    删除不支持的运行时是完全安全的。如果需要,您可以稍后重新安装这些。

        12
  •  9
  •   LembergSun    6 年前

    NSString *docDirPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)objectAtIndex:0];
    NSLog(@"%@", docDirPath);
    

    你会有这样的想法:

    /用户/管理员/图书馆/开发者/核心模拟器/设备/58B5B431-D2BB-46F1-AFF3-DFC789D189E8/数据/容器/数据/应用程序/6F3B985F-351E-468F-9CFD-BCBE217A25FB/文档

    字符串路径的Swift版本:

    let docDirPath =
    NSSearchPathForDirectoriesInDomains(.documentDirectory,
                                        .userDomainMask, true).first
    print(docDirPath)
    

    let docDirUrl =
        FileManager.default.urls(for: .documentDirectory,
                                 in: .userDomainMask).first
    print(docDirUrl)
    
        13
  •  7
  •   Karthi    13 年前

    在iOS 5中:

    /用户/[User Name]/Library/Application Support/iPhone Simulator/5.0/Applications/[AppGUID]/

        14
  •  6
  •   Durai Amuthan.H    11 年前

    对于Xcode 4.6,它存储在以下路径中。。。

    /Users/[currentuser]/Library/Application Support/iPhone Simulator/6.1/Applications/

      NSLog(@"path:%@",[[NSBundle mainBundle]bundlePath]);
    
        15
  •  4
  •   ohho    10 年前

    对于iOS 8

    找到 文件夹,您可以在“文档”文件夹中写入文件:

    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *fileName = [documentsDirectory stringByAppendingPathComponent:@"Words.txt"];
    NSString *content = @"Apple";
    [content writeToFile:fileName atomically:NO encoding:NSStringEncodingConversionAllowLossy error:nil];
    

    说,在 didFinishLaunchingWithOptions .

    然后,您可以打开终端并找到文件夹:

    $ find ~/Library -name Words.txt
    
        16
  •  2
  •   Edwin    13 年前

    如果有人在lion中仍然遇到这个问题,那么有一篇很棒的文章提供了19个不同的提示,可以查看你的~/Library目录。在这里找到丹·弗雷克斯的文章 http://www.macworld.com/article/161156/2011/07/view_library_folder_in_lion.html

    ~/Library/应用程序支持/iPhone模拟器/用户/

        17
  •  2
  •   sheepdog    5 年前

    对于不经常使用Xcode的react本地用户,您可以使用 find

    $ find ~/Library/Developer -name 'myname.db'

    如果您不知道确切名称,可以使用通配符:

    $ find ~/Library/Developer -name 'myname.*'

        18
  •  2
  •   stevenspiel    5 年前

    ~/Library/Developer/CoreSimulator/Devices/{deviceId}/data/Containers/Data/Application/{applicationId}/Documents/my.db
    

    得到 applicationId ,我只是按修改日期对文件夹进行排序,不过我相信有更好的方法。

        19
  •  1
  •   Jason Marvin Emil Brach    6 年前

    我与这个程序没有关联,但是如果你想在finder中打开任何一个程序 SimPholders

        20
  •  0
  •   Raees Madathil    11 年前

    NSString *fileName = @"Demo.pdf";
        NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString *documentsDirectory = [paths objectAtIndex:0];
        NSString *pdfFileName = [documentsDirectory stringByAppendingPathComponent:fileName];
        NSLog(@"File path%@",pdfFileName);
    
        21
  •  0
  •   Mike Zriel    10 年前

    要打开在模拟器的xCode中构建的应用程序所在的目录,请执行以下操作:

    1. 然后单击GO->转到文件夹
    2. 类型:~/Library/Application Support/iPhone模拟器
    3. 子目录是安装在模拟器上的应用程序