如何将文件拖放到应用程序沙箱中的设备上进行测试?

发布于 2024-10-21 06:17:10 字数 144 浏览 0 评论 0原文

我想将一些文件放入设备上应用程序的沙箱中进行测试。使用 iTunes 尝试查找沙箱并没有帮助。

如何浏览到 /var/mobile/Applications/{My App UUID}/Documents 以便放置一些文件进行测试?

I want to drop some files in my application's sandbox on the device for testing. Using iTunes to try to find the sandbox has not helped.

How do I browse to /var/mobile/Applications/{My App UUID}/Documents so I can drop some files for testing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

扮仙女 2024-10-28 06:17:10

在模拟器上,您将在以下位置找到应用程序的文档目录:

/Users/.../Library/Application Support/iPhone Simulator/User/Applications//Documents

您可以通过以下行以编程方式访问该文件夹:

NSArray *paths = NSSearchPathForDirectoriesInDomains(
            NSDocumentDirectory, 
            NSUserDomainMask, YES); 
NSString* docDir = [paths objectAtIndex:0];

如果您需要将文件拖放到物理设备上,您可以使用 DiskAid

On the simulator you will find the document directory for your application in:

/Users/.../Library/Application Support/iPhone Simulator/User/Applications//Documents

And programmatically you can access that folder with these lines:

NSArray *paths = NSSearchPathForDirectoriesInDomains(
            NSDocumentDirectory, 
            NSUserDomainMask, YES); 
NSString* docDir = [paths objectAtIndex:0];

If you need to drop the files on the phisical device, you can use DiskAid

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文