无法从 iOS 上的另一个应用程序中找到用于打开文件应用程序的专用 URL

Cannot Find Private URL For Opening Files App From Within Another App On iOS

我需要从我的应用程序中打开“文件”应用程序。这是一个内部应用程序,不会在应用程序商店上架,所以我不担心尝试使用私有 URL。

我试过了

"App-Prefs:root=files"
"App-Prefs:root=FILES"
"App-Prefs:root=Files"

let url = URL.init(string: "App-Prefs:root=Files")!
UIApplication.shared.open(url, options: [:]) { (Bool) in
    print("opened")
}

根据字符串,它要么不打开任何东西,要么打开设置应用程序。

根据名为使用 URL 方案与应用程序通信的部分中的 this thread, you can use shareddocuments:// as the URLScheme to open the Files app. You can read more about how to use URLSchemes in this 文档。