gpt4 book ai didi

ios - 我如何才能访问 iOS 的 '~/Applications'?

转载 作者:行者123 更新时间:2023-11-28 18:47:53 24 4
gpt4 key购买 nike

我正在尝试使用以下方式进入此文件夹:

import os  
location=os.chdir('/Applications')
for file in os.listdir(location):
print(file)

返回: '不允许操作'

当我运行它时,在 pythonista 应用程序中,出现一条警告消息

但是当我交替运行它但使用基本根文件目录时,它会显示所有文件夹

import os  
location=os.chdir('/')
for file in os.listdir(location):
print(file)

返回: 。文件 .mb 应用 开发商 图书馆 系统 垃圾桶 核心 开发 ETC 私有(private)的 sbin tmp 用户名 变量

最佳答案

你做不到。 source

For security purposes, an iOS app’s interactions with the file system are limited to the directories inside the app’s sandbox directory.

您应该只能访问某些文件夹

During installation of a new app, the installer creates a number of container directories for the app inside the sandbox directory. Each container directory has a specific role.

这是您唯一的工作区域

iOS apps always run in a sandbox

关于ios - 我如何才能访问 iOS 的 '~/Applications'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47556317/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com