android Studio 的 DownloadManger class 中 "External" 的确切引用是什么?
What is the exact reference of "External" in android Studio's DownloadManger class?
在 "android studio" 中使用 DowloadManager
时使用 setDestinationInExternalFilesDir
和 setDestinationInExternalPublicDir
,我注意到这两种方法有些奇怪。
做 ExternalFilesDir
和 ExternalPublicDir
引用外部可移动存储器上的某个位置,例如 sdCards;或者只是在设备的内部存储器上,但在应用程序的目录之外?
我在 google 的开发者网站上搜索了答案,但不幸的是没有找到正确的答案。
感谢任何帮助。
根据 Mike M 对问题的评论:
In Android parlance, "external" refers to locations that are not in
apps' private internal storage. That does not necessarily mean
removable storage, ... .
它绝对正确。
在 "android studio" 中使用 DowloadManager
时使用 setDestinationInExternalFilesDir
和 setDestinationInExternalPublicDir
,我注意到这两种方法有些奇怪。
做 ExternalFilesDir
和 ExternalPublicDir
引用外部可移动存储器上的某个位置,例如 sdCards;或者只是在设备的内部存储器上,但在应用程序的目录之外?
我在 google 的开发者网站上搜索了答案,但不幸的是没有找到正确的答案。
感谢任何帮助。
根据 Mike M 对问题的评论:
In Android parlance, "external" refers to locations that are not in apps' private internal storage. That does not necessarily mean removable storage, ... .
它绝对正确。