blob: f2fb5b246f39df400a07182ce80519a1de3b4508 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.os;
18
Sudheer Shanka572fdfd2019-06-04 16:46:57 -070019import android.Manifest;
Jeff Sharkeya30e5c32019-02-28 12:02:10 -070020import android.annotation.NonNull;
Jeff Sharkey70eb34a2018-09-13 11:57:03 -060021import android.annotation.SystemApi;
Philip P. Moltmannf80809f2018-04-04 11:20:44 -070022import android.annotation.TestApi;
Jeff Sharkeybcff13c2019-03-28 14:29:35 -060023import android.app.AppGlobals;
24import android.app.AppOpsManager;
Jeff Sharkey4ca728c2014-01-10 16:27:19 -080025import android.app.admin.DevicePolicyManager;
Artur Satayevafdb23a2019-12-10 17:47:53 +000026import android.compat.annotation.UnsupportedAppUsage;
Jeff Sharkey1abdb712013-08-11 16:28:14 -070027import android.content.Context;
Jeff Sharkey488162b2019-04-27 17:03:54 -060028import android.content.Intent;
Sudheer Shanka572fdfd2019-06-04 16:46:57 -070029import android.content.pm.PackageManager;
Jeff Sharkey48877892015-03-18 11:27:19 -070030import android.os.storage.StorageManager;
Mike Lockwood2f6a3882011-05-09 19:08:06 -070031import android.os.storage.StorageVolume;
Jeff Sharkey488162b2019-04-27 17:03:54 -060032import android.provider.MediaStore;
Jeff Sharkeybd0e9e42015-04-30 16:04:50 -070033import android.text.TextUtils;
Kenny Rootb2278dc2011-01-18 13:03:28 -080034import android.util.Log;
San Mehat7fd0fee2009-12-17 07:12:23 -080035
Gilles Debunneee1d6302011-05-13 10:09:32 -070036import java.io.File;
Hung-ying Tyan774d89e2020-02-05 16:55:01 +080037import java.io.IOException;
Jeff Sharkey04b4ba12019-12-15 22:42:42 -070038import java.util.ArrayList;
39import java.util.Collection;
Jeff Sharkey20356142017-12-06 15:22:05 -070040import java.util.LinkedList;
Hung-ying Tyan774d89e2020-02-05 16:55:01 +080041import java.util.List;
shafik81870652020-03-05 12:59:15 +000042import java.util.Objects;
Gilles Debunneee1d6302011-05-13 10:09:32 -070043
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044/**
45 * Provides access to environment variables.
46 */
47public class Environment {
Kenny Rootb2278dc2011-01-18 13:03:28 -080048 private static final String TAG = "Environment";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049
Jeff Sharkeydd02e332018-06-27 14:41:57 -060050 // NOTE: keep credential-protected paths in sync with StrictMode.java
51
Jeff Sharkeyb049e212012-09-07 23:16:01 -070052 private static final String ENV_EXTERNAL_STORAGE = "EXTERNAL_STORAGE";
Jeff Sharkey63d0a062013-03-01 16:12:55 -080053 private static final String ENV_ANDROID_ROOT = "ANDROID_ROOT";
Jeff Sharkey48877892015-03-18 11:27:19 -070054 private static final String ENV_ANDROID_DATA = "ANDROID_DATA";
Jeff Sharkeycf3f0a12016-03-17 19:57:58 -060055 private static final String ENV_ANDROID_EXPAND = "ANDROID_EXPAND";
Jeff Sharkey48877892015-03-18 11:27:19 -070056 private static final String ENV_ANDROID_STORAGE = "ANDROID_STORAGE";
Jeff Sharkey15447792015-11-05 16:18:51 -080057 private static final String ENV_DOWNLOAD_CACHE = "DOWNLOAD_CACHE";
Jeff Sharkey1be762c2014-03-06 09:56:23 -080058 private static final String ENV_OEM_ROOT = "OEM_ROOT";
Hung-ying Tyanbdc9d582015-11-20 11:53:39 +080059 private static final String ENV_ODM_ROOT = "ODM_ROOT";
Christopher Tate740888f2014-04-18 12:24:57 -070060 private static final String ENV_VENDOR_ROOT = "VENDOR_ROOT";
Jaekyun Seok1713d9e2018-01-12 21:47:26 +090061 private static final String ENV_PRODUCT_ROOT = "PRODUCT_ROOT";
Jeongik Cha9ec059a2019-07-04 21:12:06 +090062 private static final String ENV_SYSTEM_EXT_ROOT = "SYSTEM_EXT_ROOT";
Dario Frenic3e1bb722019-10-09 15:43:38 +010063 private static final String ENV_APEX_ROOT = "APEX_ROOT";
Jeff Sharkeyb049e212012-09-07 23:16:01 -070064
Jeff Sharkeydfa45302012-09-12 16:25:22 -070065 /** {@hide} */
Jeff Sharkey1abdb712013-08-11 16:28:14 -070066 public static final String DIR_ANDROID = "Android";
67 private static final String DIR_DATA = "data";
68 private static final String DIR_MEDIA = "media";
69 private static final String DIR_OBB = "obb";
70 private static final String DIR_FILES = "files";
71 private static final String DIR_CACHE = "cache";
72
73 /** {@hide} */
74 @Deprecated
75 public static final String DIRECTORY_ANDROID = DIR_ANDROID;
Jeff Sharkeydfa45302012-09-12 16:25:22 -070076
Jeff Sharkey63d0a062013-03-01 16:12:55 -080077 private static final File DIR_ANDROID_ROOT = getDirectory(ENV_ANDROID_ROOT, "/system");
Jeff Sharkey48877892015-03-18 11:27:19 -070078 private static final File DIR_ANDROID_DATA = getDirectory(ENV_ANDROID_DATA, "/data");
Jeff Sharkeycf3f0a12016-03-17 19:57:58 -060079 private static final File DIR_ANDROID_EXPAND = getDirectory(ENV_ANDROID_EXPAND, "/mnt/expand");
Jeff Sharkey48877892015-03-18 11:27:19 -070080 private static final File DIR_ANDROID_STORAGE = getDirectory(ENV_ANDROID_STORAGE, "/storage");
Jeff Sharkey15447792015-11-05 16:18:51 -080081 private static final File DIR_DOWNLOAD_CACHE = getDirectory(ENV_DOWNLOAD_CACHE, "/cache");
Jeff Sharkey1be762c2014-03-06 09:56:23 -080082 private static final File DIR_OEM_ROOT = getDirectory(ENV_OEM_ROOT, "/oem");
Hung-ying Tyanbdc9d582015-11-20 11:53:39 +080083 private static final File DIR_ODM_ROOT = getDirectory(ENV_ODM_ROOT, "/odm");
Christopher Tate740888f2014-04-18 12:24:57 -070084 private static final File DIR_VENDOR_ROOT = getDirectory(ENV_VENDOR_ROOT, "/vendor");
Jaekyun Seok1713d9e2018-01-12 21:47:26 +090085 private static final File DIR_PRODUCT_ROOT = getDirectory(ENV_PRODUCT_ROOT, "/product");
Jeongik Cha9ec059a2019-07-04 21:12:06 +090086 private static final File DIR_SYSTEM_EXT_ROOT = getDirectory(ENV_SYSTEM_EXT_ROOT,
Dario Frenic3e1bb722019-10-09 15:43:38 +010087 "/system_ext");
88 private static final File DIR_APEX_ROOT = getDirectory(ENV_APEX_ROOT,
89 "/apex");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090
Andrei Onea24ec3212019-03-15 17:35:05 +000091 @UnsupportedAppUsage
Andreas Gamped281b422016-07-08 03:50:27 +000092 private static UserEnvironment sCurrentUser;
93 private static boolean sUserRequired;
Kenny Roote1ff2142010-10-12 11:20:01 -070094
Andreas Gamped281b422016-07-08 03:50:27 +000095 static {
96 initForCurrentUser();
Jeff Sharkeyb049e212012-09-07 23:16:01 -070097 }
98
99 /** {@hide} */
Andrei Onea24ec3212019-03-15 17:35:05 +0000100 @UnsupportedAppUsage
Andreas Gamped281b422016-07-08 03:50:27 +0000101 public static void initForCurrentUser() {
102 final int userId = UserHandle.myUserId();
103 sCurrentUser = new UserEnvironment(userId);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700104 }
105
106 /** {@hide} */
107 public static class UserEnvironment {
Jeff Sharkey48877892015-03-18 11:27:19 -0700108 private final int mUserId;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700109
Andrei Onea24ec3212019-03-15 17:35:05 +0000110 @UnsupportedAppUsage
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700111 public UserEnvironment(int userId) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700112 mUserId = userId;
113 }
Jeff Sharkey44cbdec2013-10-07 16:49:47 -0700114
Andrei Onea24ec3212019-03-15 17:35:05 +0000115 @UnsupportedAppUsage
Jeff Sharkey48877892015-03-18 11:27:19 -0700116 public File[] getExternalDirs() {
Jeff Sharkey46349872015-07-28 10:49:47 -0700117 final StorageVolume[] volumes = StorageManager.getVolumeList(mUserId,
118 StorageManager.FLAG_FOR_WRITE);
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -0700119 final File[] files = new File[volumes.length];
Jeff Sharkey48877892015-03-18 11:27:19 -0700120 for (int i = 0; i < volumes.length; i++) {
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -0700121 files[i] = volumes[i].getPathFile();
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -0700122 }
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -0700123 return files;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700124 }
125
Andrei Onea24ec3212019-03-15 17:35:05 +0000126 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700127 @Deprecated
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700128 public File getExternalStorageDirectory() {
Jeff Sharkey48877892015-03-18 11:27:19 -0700129 return getExternalDirs()[0];
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700130 }
131
Andrei Onea24ec3212019-03-15 17:35:05 +0000132 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700133 @Deprecated
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700134 public File getExternalStoragePublicDirectory(String type) {
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700135 return buildExternalStoragePublicDirs(type)[0];
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700136 }
137
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700138 public File[] buildExternalStoragePublicDirs(String type) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700139 return buildPaths(getExternalDirs(), type);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700140 }
141
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700142 public File[] buildExternalStorageAndroidDataDirs() {
Jeff Sharkey48877892015-03-18 11:27:19 -0700143 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_DATA);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700144 }
145
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700146 public File[] buildExternalStorageAndroidObbDirs() {
Jeff Sharkey48877892015-03-18 11:27:19 -0700147 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_OBB);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700148 }
149
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700150 public File[] buildExternalStorageAppDataDirs(String packageName) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700151 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_DATA, packageName);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700152 }
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -0700153
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700154 public File[] buildExternalStorageAppMediaDirs(String packageName) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700155 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_MEDIA, packageName);
Jeff Sharkey2ee3c1e2014-05-30 15:38:35 -0700156 }
157
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700158 public File[] buildExternalStorageAppObbDirs(String packageName) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700159 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_OBB, packageName);
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700160 }
161
162 public File[] buildExternalStorageAppFilesDirs(String packageName) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700163 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_DATA, packageName, DIR_FILES);
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700164 }
165
166 public File[] buildExternalStorageAppCacheDirs(String packageName) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700167 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_DATA, packageName, DIR_CACHE);
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -0700168 }
Mike Lockwood2f6a3882011-05-09 19:08:06 -0700169 }
San Mehat7fd0fee2009-12-17 07:12:23 -0800170
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800171 /**
Jeff Sharkey1be762c2014-03-06 09:56:23 -0800172 * Return root of the "system" partition holding the core Android OS.
173 * Always present and mounted read-only.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800174 */
Jeff Sharkeya30e5c32019-02-28 12:02:10 -0700175 public static @NonNull File getRootDirectory() {
Jeff Sharkey63d0a062013-03-01 16:12:55 -0800176 return DIR_ANDROID_ROOT;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800177 }
178
Jeff Sharkeyec19e9b2019-08-22 11:12:11 -0600179 /**
180 * Return root directory where all external storage devices will be mounted.
181 * For example, {@link #getExternalStorageDirectory()} will appear under
182 * this location.
183 */
Jeff Sharkeya30e5c32019-02-28 12:02:10 -0700184 public static @NonNull File getStorageDirectory() {
Jeff Sharkey48877892015-03-18 11:27:19 -0700185 return DIR_ANDROID_STORAGE;
186 }
187
Jason parksa3cdaa52011-01-13 14:15:43 -0600188 /**
Jeff Sharkey1be762c2014-03-06 09:56:23 -0800189 * Return root directory of the "oem" partition holding OEM customizations,
190 * if any. If present, the partition is mounted read-only.
191 *
192 * @hide
193 */
Jeff Sharkey70eb34a2018-09-13 11:57:03 -0600194 @SystemApi
Jeff Sharkeya30e5c32019-02-28 12:02:10 -0700195 public static @NonNull File getOemDirectory() {
Jeff Sharkey1be762c2014-03-06 09:56:23 -0800196 return DIR_OEM_ROOT;
197 }
198
199 /**
Hung-ying Tyanbdc9d582015-11-20 11:53:39 +0800200 * Return root directory of the "odm" partition holding ODM customizations,
201 * if any. If present, the partition is mounted read-only.
202 *
203 * @hide
204 */
Jeff Sharkey70eb34a2018-09-13 11:57:03 -0600205 @SystemApi
Jeff Sharkeya30e5c32019-02-28 12:02:10 -0700206 public static @NonNull File getOdmDirectory() {
Hung-ying Tyanbdc9d582015-11-20 11:53:39 +0800207 return DIR_ODM_ROOT;
208 }
209
210 /**
Christopher Tate740888f2014-04-18 12:24:57 -0700211 * Return root directory of the "vendor" partition that holds vendor-provided
212 * software that should persist across simple reflashing of the "system" partition.
213 * @hide
214 */
Jeff Sharkey70eb34a2018-09-13 11:57:03 -0600215 @SystemApi
Jeff Sharkeya30e5c32019-02-28 12:02:10 -0700216 public static @NonNull File getVendorDirectory() {
Christopher Tate740888f2014-04-18 12:24:57 -0700217 return DIR_VENDOR_ROOT;
218 }
219
Jason parksa3cdaa52011-01-13 14:15:43 -0600220 /**
Jaekyun Seok1713d9e2018-01-12 21:47:26 +0900221 * Return root directory of the "product" partition holding product-specific
222 * customizations if any. If present, the partition is mounted read-only.
223 *
224 * @hide
225 */
Jeff Sharkey70eb34a2018-09-13 11:57:03 -0600226 @SystemApi
Anton Hansson09e47be2018-11-08 12:56:18 +0000227 @TestApi
Jeff Sharkeya30e5c32019-02-28 12:02:10 -0700228 public static @NonNull File getProductDirectory() {
Jaekyun Seok1713d9e2018-01-12 21:47:26 +0900229 return DIR_PRODUCT_ROOT;
230 }
231
232 /**
Dario Freni2bef1762018-06-01 14:02:08 +0100233 * Return root directory of the "product_services" partition holding middleware
234 * services if any. If present, the partition is mounted read-only.
235 *
Jeongik Cha9ec059a2019-07-04 21:12:06 +0900236 * @deprecated This directory is not guaranteed to exist.
237 * Its name is changed to "system_ext" because the partition's purpose is changed.
238 * {@link #getSystemExtDirectory()}
Dario Freni2bef1762018-06-01 14:02:08 +0100239 * @hide
240 */
Jeff Sharkey70eb34a2018-09-13 11:57:03 -0600241 @SystemApi
Jeongik Cha9ec059a2019-07-04 21:12:06 +0900242 @Deprecated
Jeff Sharkeya30e5c32019-02-28 12:02:10 -0700243 public static @NonNull File getProductServicesDirectory() {
Jeongik Cha9ec059a2019-07-04 21:12:06 +0900244 return getDirectory("PRODUCT_SERVICES_ROOT", "/product_services");
245 }
246
247 /**
248 * Return root directory of the "system_ext" partition holding system partition's extension
249 * If present, the partition is mounted read-only.
250 *
251 * @hide
252 */
253 @SystemApi
254 public static @NonNull File getSystemExtDirectory() {
255 return DIR_SYSTEM_EXT_ROOT;
Dario Freni2bef1762018-06-01 14:02:08 +0100256 }
257
258 /**
Dario Frenic3e1bb722019-10-09 15:43:38 +0100259 * Return root directory of the apex mount point, where all the apex modules are made available
260 * to the rest of the system.
261 *
262 * @hide
263 */
264 public static @NonNull File getApexDirectory() {
265 return DIR_APEX_ROOT;
266 }
267
268 /**
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700269 * Return the system directory for a user. This is for use by system
270 * services to store files relating to the user. This directory will be
271 * automatically deleted when the user is removed.
Amith Yamasani61f57372012-08-31 12:12:28 -0700272 *
Jeff Sharkey3a6a61e2018-10-03 10:45:51 -0600273 * @deprecated This directory is valid and still exists, but but callers
274 * should <em>strongly</em> consider switching to using either
275 * {@link #getDataSystemCeDirectory(int)} or
276 * {@link #getDataSystemDeDirectory(int)}, both of which support
277 * fast user wipe.
Amith Yamasani61f57372012-08-31 12:12:28 -0700278 * @hide
279 */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700280 @Deprecated
Amith Yamasani61f57372012-08-31 12:12:28 -0700281 public static File getUserSystemDirectory(int userId) {
Jeff Sharkey15447792015-11-05 16:18:51 -0800282 return new File(new File(getDataSystemDirectory(), "users"), Integer.toString(userId));
Amith Yamasani61f57372012-08-31 12:12:28 -0700283 }
284
285 /**
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700286 * Returns the config directory for a user. This is for use by system
287 * services to store files relating to the user which should be readable by
288 * any app running as that user.
Robin Lee69591332014-04-28 16:03:22 +0100289 *
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700290 * @deprecated This directory is valid and still exists, but callers should
291 * <em>strongly</em> consider switching to
292 * {@link #getDataMiscCeDirectory(int)} which is protected with
293 * user credentials or {@link #getDataMiscDeDirectory(int)}
294 * which supports fast user wipe.
Robin Lee69591332014-04-28 16:03:22 +0100295 * @hide
296 */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700297 @Deprecated
Robin Lee69591332014-04-28 16:03:22 +0100298 public static File getUserConfigDirectory(int userId) {
299 return new File(new File(new File(
300 getDataDirectory(), "misc"), "user"), Integer.toString(userId));
301 }
302
303 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700304 * Return the user data directory.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800305 */
306 public static File getDataDirectory() {
Jeff Sharkey15447792015-11-05 16:18:51 -0800307 return DIR_ANDROID_DATA;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800308 }
309
Jeff Sharkeybd0e9e42015-04-30 16:04:50 -0700310 /** {@hide} */
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700311 public static File getDataDirectory(String volumeUuid) {
Jeff Sharkeybd0e9e42015-04-30 16:04:50 -0700312 if (TextUtils.isEmpty(volumeUuid)) {
Jeff Sharkey15447792015-11-05 16:18:51 -0800313 return DIR_ANDROID_DATA;
Jeff Sharkeybd0e9e42015-04-30 16:04:50 -0700314 } else {
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700315 return new File("/mnt/expand/" + volumeUuid);
Jeff Sharkeybd0e9e42015-04-30 16:04:50 -0700316 }
317 }
318
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700319 /** {@hide} */
Jeff Sharkeycf3f0a12016-03-17 19:57:58 -0600320 public static File getExpandDirectory() {
321 return DIR_ANDROID_EXPAND;
322 }
323
324 /** {@hide} */
Andrei Onea24ec3212019-03-15 17:35:05 +0000325 @UnsupportedAppUsage
Jeff Sharkey15447792015-11-05 16:18:51 -0800326 public static File getDataSystemDirectory() {
327 return new File(getDataDirectory(), "system");
328 }
329
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700330 /**
331 * Returns the base directory for per-user system directory, device encrypted.
332 * {@hide}
333 */
334 public static File getDataSystemDeDirectory() {
335 return buildPath(getDataDirectory(), "system_de");
336 }
337
338 /**
339 * Returns the base directory for per-user system directory, credential encrypted.
340 * {@hide}
341 */
342 public static File getDataSystemCeDirectory() {
343 return buildPath(getDataDirectory(), "system_ce");
344 }
345
Jeff Sharkey3a6a61e2018-10-03 10:45:51 -0600346 /**
347 * Return the "credential encrypted" system directory for a user. This is
348 * for use by system services to store files relating to the user. This
349 * directory supports fast user wipe, and will be automatically deleted when
350 * the user is removed.
351 * <p>
352 * Data stored under this path is "credential encrypted", which uses an
353 * encryption key that is entangled with user credentials, such as a PIN or
354 * password. The contents will only be available once the user has been
355 * unlocked, as reported by {@code SystemService.onUnlockUser()}.
356 * <p>
357 * New code should <em>strongly</em> prefer storing sensitive data in these
358 * credential encrypted areas.
359 *
360 * @hide
361 */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700362 public static File getDataSystemCeDirectory(int userId) {
363 return buildPath(getDataDirectory(), "system_ce", String.valueOf(userId));
Jeff Sharkey15447792015-11-05 16:18:51 -0800364 }
365
Jeff Sharkey3a6a61e2018-10-03 10:45:51 -0600366 /**
367 * Return the "device encrypted" system directory for a user. This is for
368 * use by system services to store files relating to the user. This
369 * directory supports fast user wipe, and will be automatically deleted when
370 * the user is removed.
371 * <p>
372 * Data stored under this path is "device encrypted", which uses an
373 * encryption key that is tied to the physical device. The contents will
374 * only be available once the device has finished a {@code dm-verity}
375 * protected boot.
376 * <p>
377 * New code should <em>strongly</em> avoid storing sensitive data in these
378 * device encrypted areas.
379 *
380 * @hide
381 */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700382 public static File getDataSystemDeDirectory(int userId) {
383 return buildPath(getDataDirectory(), "system_de", String.valueOf(userId));
384 }
385
386 /** {@hide} */
387 public static File getDataMiscDirectory() {
388 return new File(getDataDirectory(), "misc");
389 }
390
391 /** {@hide} */
Amith Yamasania2807132017-01-26 12:35:14 -0800392 public static File getDataMiscCeDirectory() {
393 return buildPath(getDataDirectory(), "misc_ce");
394 }
395
396 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700397 public static File getDataMiscCeDirectory(int userId) {
398 return buildPath(getDataDirectory(), "misc_ce", String.valueOf(userId));
399 }
400
401 /** {@hide} */
402 public static File getDataMiscDeDirectory(int userId) {
403 return buildPath(getDataDirectory(), "misc_de", String.valueOf(userId));
Jeff Sharkey15447792015-11-05 16:18:51 -0800404 }
405
Calin Juravled479b522016-02-24 16:22:03 +0000406 private static File getDataProfilesDeDirectory(int userId) {
407 return buildPath(getDataDirectory(), "misc", "profiles", "cur", String.valueOf(userId));
408 }
409
410 /** {@hide} */
Andreas Huber7fe20532018-01-22 11:26:44 -0800411 public static File getDataVendorCeDirectory(int userId) {
412 return buildPath(getDataDirectory(), "vendor_ce", String.valueOf(userId));
413 }
414
415 /** {@hide} */
416 public static File getDataVendorDeDirectory(int userId) {
417 return buildPath(getDataDirectory(), "vendor_de", String.valueOf(userId));
418 }
419
420 /** {@hide} */
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800421 public static File getDataRefProfilesDePackageDirectory(String packageName) {
422 return buildPath(getDataDirectory(), "misc", "profiles", "ref", packageName);
Calin Juravle0bd77622016-07-12 15:56:41 +0100423 }
424
425 /** {@hide} */
Calin Juravled479b522016-02-24 16:22:03 +0000426 public static File getDataProfilesDePackageDirectory(int userId, String packageName) {
427 return buildPath(getDataProfilesDeDirectory(userId), packageName);
428 }
429
430 /** {@hide} */
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700431 public static File getDataAppDirectory(String volumeUuid) {
432 return new File(getDataDirectory(volumeUuid), "app");
433 }
434
435 /** {@hide} */
Dario Frenia8f4b132018-12-30 00:36:49 +0000436 public static File getDataStagingDirectory(String volumeUuid) {
Gavin Corkery296c8b92019-02-27 12:06:24 +0000437 return new File(getDataDirectory(volumeUuid), "app-staging");
Dario Frenia8f4b132018-12-30 00:36:49 +0000438 }
439
440 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700441 public static File getDataUserCeDirectory(String volumeUuid) {
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700442 return new File(getDataDirectory(volumeUuid), "user");
443 }
444
445 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700446 public static File getDataUserCeDirectory(String volumeUuid, int userId) {
447 return new File(getDataUserCeDirectory(volumeUuid), String.valueOf(userId));
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700448 }
449
450 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700451 public static File getDataUserCePackageDirectory(String volumeUuid, int userId,
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700452 String packageName) {
453 // TODO: keep consistent with installd
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700454 return new File(getDataUserCeDirectory(volumeUuid, userId), packageName);
Jeff Sharkey15447792015-11-05 16:18:51 -0800455 }
456
457 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700458 public static File getDataUserDeDirectory(String volumeUuid) {
Jeff Sharkey15447792015-11-05 16:18:51 -0800459 return new File(getDataDirectory(volumeUuid), "user_de");
460 }
461
462 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700463 public static File getDataUserDeDirectory(String volumeUuid, int userId) {
464 return new File(getDataUserDeDirectory(volumeUuid), String.valueOf(userId));
Jeff Sharkey15447792015-11-05 16:18:51 -0800465 }
466
467 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700468 public static File getDataUserDePackageDirectory(String volumeUuid, int userId,
Jeff Sharkey15447792015-11-05 16:18:51 -0800469 String packageName) {
470 // TODO: keep consistent with installd
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700471 return new File(getDataUserDeDirectory(volumeUuid, userId), packageName);
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700472 }
473
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800474 /**
Fyodor Kupolov88257582016-05-24 16:06:56 -0700475 * Return preloads directory.
476 * <p>This directory may contain pre-loaded content such as
477 * {@link #getDataPreloadsDemoDirectory() demo videos} and
478 * {@link #getDataPreloadsAppsDirectory() APK files} .
479 * {@hide}
480 */
481 public static File getDataPreloadsDirectory() {
482 return new File(getDataDirectory(), "preloads");
483 }
484
485 /**
486 * @see #getDataPreloadsDirectory()
487 * {@hide}
488 */
489 public static File getDataPreloadsDemoDirectory() {
490 return new File(getDataPreloadsDirectory(), "demo");
491 }
492
493 /**
494 * @see #getDataPreloadsDirectory()
495 * {@hide}
496 */
497 public static File getDataPreloadsAppsDirectory() {
498 return new File(getDataPreloadsDirectory(), "apps");
499 }
500
501 /**
Fyodor Kupolov19551a82016-08-22 14:46:08 -0700502 * @see #getDataPreloadsDirectory()
503 * {@hide}
504 */
505 public static File getDataPreloadsMediaDirectory() {
506 return new File(getDataPreloadsDirectory(), "media");
507 }
508
509 /**
Fyodor Kupolov6e687062016-09-09 17:42:12 -0700510 * Returns location of preloaded cache directory for package name
511 * @see #getDataPreloadsDirectory()
512 * {@hide}
513 */
514 public static File getDataPreloadsFileCacheDirectory(String packageName) {
515 return new File(getDataPreloadsFileCacheDirectory(), packageName);
516 }
517
518 /**
519 * Returns location of preloaded cache directory.
520 * @see #getDataPreloadsDirectory()
521 * {@hide}
522 */
523 public static File getDataPreloadsFileCacheDirectory() {
524 return new File(getDataPreloadsDirectory(), "file_cache");
525 }
526
527 /**
Sudheer Shankabe0febe2018-11-07 18:24:37 -0800528 * Returns location of packages cache directory.
529 * {@hide}
530 */
531 public static File getPackageCacheDirectory() {
532 return new File(getDataSystemDirectory(), "package_cache");
533 }
534
535 /**
Jeff Sharkey04b4ba12019-12-15 22:42:42 -0700536 * Return locations where media files (such as ringtones, notification
537 * sounds, or alarm sounds) may be located on internal storage. These are
538 * typically indexed under {@link MediaStore#VOLUME_INTERNAL}.
539 *
540 * @hide
541 */
542 @SystemApi
543 public static @NonNull Collection<File> getInternalMediaDirectories() {
544 final ArrayList<File> res = new ArrayList<>();
Hung-ying Tyan774d89e2020-02-05 16:55:01 +0800545 addCanonicalFile(res, new File(Environment.getRootDirectory(), "media"));
546 addCanonicalFile(res, new File(Environment.getOemDirectory(), "media"));
547 addCanonicalFile(res, new File(Environment.getProductDirectory(), "media"));
Jeff Sharkey04b4ba12019-12-15 22:42:42 -0700548 return res;
549 }
550
Hung-ying Tyan774d89e2020-02-05 16:55:01 +0800551 private static void addCanonicalFile(List<File> list, File file) {
552 try {
553 list.add(file.getCanonicalFile());
554 } catch (IOException e) {
555 Log.w(TAG, "Failed to resolve " + file + ": " + e);
556 list.add(file);
557 }
558 }
559
Jeff Sharkey04b4ba12019-12-15 22:42:42 -0700560 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700561 * Return the primary shared/external storage directory. This directory may
562 * not currently be accessible if it has been mounted by the user on their
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800563 * computer, has been removed from the device, or some other problem has
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700564 * happened. You can determine its current state with
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800565 * {@link #getExternalStorageState()}.
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700566 * <p>
567 * <em>Note: don't be confused by the word "external" here. This directory
568 * can better be thought as media/shared storage. It is a filesystem that
569 * can hold a relatively large amount of data and that is shared across all
570 * applications (does not enforce permissions). Traditionally this is an SD
571 * card, but it may also be implemented as built-in storage in a device that
572 * is distinct from the protected internal storage and can be mounted as a
573 * filesystem on a computer.</em>
574 * <p>
575 * On devices with multiple users (as described by {@link UserManager}),
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700576 * each user has their own isolated shared storage. Applications only have
577 * access to the shared storage for the user they're running as.
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700578 * <p>
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700579 * In devices with multiple shared/external storage directories, this
580 * directory represents the primary storage that the user will interact
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700581 * with. Access to secondary storage is available through
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700582 * {@link Context#getExternalFilesDirs(String)},
583 * {@link Context#getExternalCacheDirs()}, and
584 * {@link Context#getExternalMediaDirs()}.
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700585 * <p>
586 * Applications should not directly use this top-level directory, in order
587 * to avoid polluting the user's root namespace. Any files that are private
588 * to the application should be placed in a directory returned by
589 * {@link android.content.Context#getExternalFilesDir
Dianne Hackbornacaf0282010-03-30 14:39:35 -0700590 * Context.getExternalFilesDir}, which the system will take care of deleting
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700591 * if the application is uninstalled. Other shared files should be placed in
592 * one of the directories returned by
593 * {@link #getExternalStoragePublicDirectory}.
594 * <p>
595 * Writing to this path requires the
596 * {@link android.Manifest.permission#WRITE_EXTERNAL_STORAGE} permission,
Jeff Sharkey488162b2019-04-27 17:03:54 -0600597 * and starting in {@link android.os.Build.VERSION_CODES#KITKAT}, read
598 * access requires the
Jeff Sharkey8c165792012-10-22 14:08:29 -0700599 * {@link android.Manifest.permission#READ_EXTERNAL_STORAGE} permission,
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700600 * which is automatically granted if you hold the write permission.
601 * <p>
Chet Haasee8222dd2013-09-05 07:44:18 -0700602 * Starting in {@link android.os.Build.VERSION_CODES#KITKAT}, if your
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700603 * application only needs to store internal data, consider using
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700604 * {@link Context#getExternalFilesDir(String)},
605 * {@link Context#getExternalCacheDir()}, or
606 * {@link Context#getExternalMediaDirs()}, which require no permissions to
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700607 * read or write.
608 * <p>
609 * This path may change between platform versions, so applications should
610 * only persist relative paths.
611 * <p>
612 * Here is an example of typical code to monitor the state of external
613 * storage:
614 * <p>
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700615 * {@sample development/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800616 * monitor_storage}
Dianne Hackborn407f6252010-10-04 11:31:17 -0700617 *
618 * @see #getExternalStorageState()
619 * @see #isExternalStorageRemovable()
Jeff Sharkey488162b2019-04-27 17:03:54 -0600620 * @deprecated To improve user privacy, direct access to shared/external
621 * storage devices is deprecated. When an app targets
622 * {@link android.os.Build.VERSION_CODES#Q}, the path returned
623 * from this method is no longer directly accessible to apps.
624 * Apps can continue to access content stored on shared/external
625 * storage by migrating to alternatives such as
626 * {@link Context#getExternalFilesDir(String)},
627 * {@link MediaStore}, or {@link Intent#ACTION_OPEN_DOCUMENT}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800628 */
Jeff Sharkey488162b2019-04-27 17:03:54 -0600629 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800630 public static File getExternalStorageDirectory() {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700631 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000632 return sCurrentUser.getExternalDirs()[0];
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700633 }
634
635 /** {@hide} */
Andrei Onea24ec3212019-03-15 17:35:05 +0000636 @UnsupportedAppUsage
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700637 public static File getLegacyExternalStorageDirectory() {
638 return new File(System.getenv(ENV_EXTERNAL_STORAGE));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800639 }
640
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700641 /** {@hide} */
Andrei Onea24ec3212019-03-15 17:35:05 +0000642 @UnsupportedAppUsage
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700643 public static File getLegacyExternalStorageObbDirectory() {
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700644 return buildPath(getLegacyExternalStorageDirectory(), DIR_ANDROID, DIR_OBB);
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700645 }
646
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800647 /**
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800648 * Standard directory in which to place any audio files that should be
649 * in the regular list of music for the user.
650 * This may be combined with
651 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS},
652 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
653 * of directories to categories a particular audio file as more than one
654 * type.
655 */
656 public static String DIRECTORY_MUSIC = "Music";
Felipe Lemec7b1f892016-01-15 15:02:31 -0800657
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800658 /**
659 * Standard directory in which to place any audio files that should be
660 * in the list of podcasts that the user can select (not as regular
661 * music).
662 * This may be combined with {@link #DIRECTORY_MUSIC},
663 * {@link #DIRECTORY_NOTIFICATIONS},
664 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
665 * of directories to categories a particular audio file as more than one
666 * type.
667 */
668 public static String DIRECTORY_PODCASTS = "Podcasts";
Felipe Lemeb012f912016-01-22 16:49:55 -0800669
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800670 /**
671 * Standard directory in which to place any audio files that should be
672 * in the list of ringtones that the user can select (not as regular
673 * music).
674 * This may be combined with {@link #DIRECTORY_MUSIC},
675 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS}, and
676 * {@link #DIRECTORY_ALARMS} as a series
677 * of directories to categories a particular audio file as more than one
678 * type.
679 */
680 public static String DIRECTORY_RINGTONES = "Ringtones";
Felipe Lemeb012f912016-01-22 16:49:55 -0800681
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800682 /**
683 * Standard directory in which to place any audio files that should be
684 * in the list of alarms that the user can select (not as regular
685 * music).
686 * This may be combined with {@link #DIRECTORY_MUSIC},
687 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS},
688 * and {@link #DIRECTORY_RINGTONES} as a series
689 * of directories to categories a particular audio file as more than one
690 * type.
691 */
692 public static String DIRECTORY_ALARMS = "Alarms";
Felipe Lemeb012f912016-01-22 16:49:55 -0800693
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800694 /**
695 * Standard directory in which to place any audio files that should be
696 * in the list of notifications that the user can select (not as regular
697 * music).
698 * This may be combined with {@link #DIRECTORY_MUSIC},
699 * {@link #DIRECTORY_PODCASTS},
700 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
701 * of directories to categories a particular audio file as more than one
702 * type.
703 */
704 public static String DIRECTORY_NOTIFICATIONS = "Notifications";
Felipe Lemeb012f912016-01-22 16:49:55 -0800705
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800706 /**
707 * Standard directory in which to place pictures that are available to
708 * the user. Note that this is primarily a convention for the top-level
709 * public directory, as the media scanner will find and collect pictures
710 * in any directory.
711 */
712 public static String DIRECTORY_PICTURES = "Pictures";
Felipe Lemeb012f912016-01-22 16:49:55 -0800713
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800714 /**
715 * Standard directory in which to place movies that are available to
716 * the user. Note that this is primarily a convention for the top-level
717 * public directory, as the media scanner will find and collect movies
718 * in any directory.
719 */
720 public static String DIRECTORY_MOVIES = "Movies";
Felipe Lemeb012f912016-01-22 16:49:55 -0800721
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800722 /**
723 * Standard directory in which to place files that have been downloaded by
724 * the user. Note that this is primarily a convention for the top-level
725 * public directory, you are free to download files anywhere in your own
Dianne Hackbornce59fb82010-04-07 17:19:04 -0700726 * private directories. Also note that though the constant here is
727 * named DIRECTORY_DOWNLOADS (plural), the actual file name is non-plural for
728 * backwards compatibility reasons.
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800729 */
Dianne Hackbornce59fb82010-04-07 17:19:04 -0700730 public static String DIRECTORY_DOWNLOADS = "Download";
Felipe Lemeb012f912016-01-22 16:49:55 -0800731
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800732 /**
733 * The traditional location for pictures and videos when mounting the
734 * device as a camera. Note that this is primarily a convention for the
735 * top-level public directory, as this convention makes no sense elsewhere.
736 */
737 public static String DIRECTORY_DCIM = "DCIM";
Jeff Sharkey3e1189b2013-09-12 21:59:06 -0700738
739 /**
740 * Standard directory in which to place documents that have been created by
741 * the user.
742 */
743 public static String DIRECTORY_DOCUMENTS = "Documents";
744
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800745 /**
Jeff Sharkeyc8e49242018-11-02 14:34:44 -0600746 * Standard directory in which to place screenshots that have been taken by
747 * the user. Typically used as a secondary directory under
748 * {@link #DIRECTORY_PICTURES}.
749 */
750 public static String DIRECTORY_SCREENSHOTS = "Screenshots";
751
752 /**
Jeff Sharkey10887d52018-11-30 13:44:41 -0700753 * Standard directory in which to place any audio files which are
754 * audiobooks.
755 */
756 public static String DIRECTORY_AUDIOBOOKS = "Audiobooks";
757
758 /**
Felipe Lemec7b1f892016-01-15 15:02:31 -0800759 * List of standard storage directories.
760 * <p>
761 * Each of its values have its own constant:
762 * <ul>
763 * <li>{@link #DIRECTORY_MUSIC}
764 * <li>{@link #DIRECTORY_PODCASTS}
765 * <li>{@link #DIRECTORY_ALARMS}
766 * <li>{@link #DIRECTORY_RINGTONES}
767 * <li>{@link #DIRECTORY_NOTIFICATIONS}
768 * <li>{@link #DIRECTORY_PICTURES}
769 * <li>{@link #DIRECTORY_MOVIES}
770 * <li>{@link #DIRECTORY_DOWNLOADS}
771 * <li>{@link #DIRECTORY_DCIM}
772 * <li>{@link #DIRECTORY_DOCUMENTS}
Jeff Sharkey10887d52018-11-30 13:44:41 -0700773 * <li>{@link #DIRECTORY_AUDIOBOOKS}
Felipe Lemec7b1f892016-01-15 15:02:31 -0800774 * </ul>
775 * @hide
776 */
Felipe Leme3e166b22016-02-24 10:17:41 -0800777 public static final String[] STANDARD_DIRECTORIES = {
Felipe Lemec7b1f892016-01-15 15:02:31 -0800778 DIRECTORY_MUSIC,
779 DIRECTORY_PODCASTS,
780 DIRECTORY_RINGTONES,
781 DIRECTORY_ALARMS,
782 DIRECTORY_NOTIFICATIONS,
783 DIRECTORY_PICTURES,
784 DIRECTORY_MOVIES,
785 DIRECTORY_DOWNLOADS,
786 DIRECTORY_DCIM,
Jeff Sharkey10887d52018-11-30 13:44:41 -0700787 DIRECTORY_DOCUMENTS,
788 DIRECTORY_AUDIOBOOKS,
Felipe Lemec7b1f892016-01-15 15:02:31 -0800789 };
790
791 /**
Felipe Lemeb012f912016-01-22 16:49:55 -0800792 * @hide
793 */
794 public static boolean isStandardDirectory(String dir) {
795 for (String valid : STANDARD_DIRECTORIES) {
796 if (valid.equals(dir)) {
797 return true;
798 }
799 }
800 return false;
801 }
802
Jeff Sharkey20356142017-12-06 15:22:05 -0700803 /** {@hide} */ public static final int HAS_MUSIC = 1 << 0;
804 /** {@hide} */ public static final int HAS_PODCASTS = 1 << 1;
805 /** {@hide} */ public static final int HAS_RINGTONES = 1 << 2;
806 /** {@hide} */ public static final int HAS_ALARMS = 1 << 3;
807 /** {@hide} */ public static final int HAS_NOTIFICATIONS = 1 << 4;
808 /** {@hide} */ public static final int HAS_PICTURES = 1 << 5;
809 /** {@hide} */ public static final int HAS_MOVIES = 1 << 6;
810 /** {@hide} */ public static final int HAS_DOWNLOADS = 1 << 7;
811 /** {@hide} */ public static final int HAS_DCIM = 1 << 8;
812 /** {@hide} */ public static final int HAS_DOCUMENTS = 1 << 9;
Jeff Sharkey10887d52018-11-30 13:44:41 -0700813 /** {@hide} */ public static final int HAS_AUDIOBOOKS = 1 << 10;
Jeff Sharkey20356142017-12-06 15:22:05 -0700814
815 /** {@hide} */ public static final int HAS_ANDROID = 1 << 16;
816 /** {@hide} */ public static final int HAS_OTHER = 1 << 17;
817
818 /**
819 * Classify the content types present on the given external storage device.
820 * <p>
821 * This is typically useful for deciding if an inserted SD card is empty, or
822 * if it contains content like photos that should be preserved.
823 *
824 * @hide
825 */
826 public static int classifyExternalStorageDirectory(File dir) {
827 int res = 0;
828 for (File f : FileUtils.listFilesOrEmpty(dir)) {
829 if (f.isFile() && isInterestingFile(f)) {
830 res |= HAS_OTHER;
831 } else if (f.isDirectory() && hasInterestingFiles(f)) {
832 final String name = f.getName();
833 if (DIRECTORY_MUSIC.equals(name)) res |= HAS_MUSIC;
834 else if (DIRECTORY_PODCASTS.equals(name)) res |= HAS_PODCASTS;
835 else if (DIRECTORY_RINGTONES.equals(name)) res |= HAS_RINGTONES;
836 else if (DIRECTORY_ALARMS.equals(name)) res |= HAS_ALARMS;
837 else if (DIRECTORY_NOTIFICATIONS.equals(name)) res |= HAS_NOTIFICATIONS;
838 else if (DIRECTORY_PICTURES.equals(name)) res |= HAS_PICTURES;
839 else if (DIRECTORY_MOVIES.equals(name)) res |= HAS_MOVIES;
840 else if (DIRECTORY_DOWNLOADS.equals(name)) res |= HAS_DOWNLOADS;
841 else if (DIRECTORY_DCIM.equals(name)) res |= HAS_DCIM;
842 else if (DIRECTORY_DOCUMENTS.equals(name)) res |= HAS_DOCUMENTS;
Jeff Sharkey10887d52018-11-30 13:44:41 -0700843 else if (DIRECTORY_AUDIOBOOKS.equals(name)) res |= HAS_AUDIOBOOKS;
Jeff Sharkey20356142017-12-06 15:22:05 -0700844 else if (DIRECTORY_ANDROID.equals(name)) res |= HAS_ANDROID;
845 else res |= HAS_OTHER;
846 }
847 }
848 return res;
849 }
850
851 private static boolean hasInterestingFiles(File dir) {
852 final LinkedList<File> explore = new LinkedList<>();
853 explore.add(dir);
854 while (!explore.isEmpty()) {
855 dir = explore.pop();
856 for (File f : FileUtils.listFilesOrEmpty(dir)) {
857 if (isInterestingFile(f)) return true;
858 if (f.isDirectory()) explore.add(f);
859 }
860 }
861 return false;
862 }
863
864 private static boolean isInterestingFile(File file) {
865 if (file.isFile()) {
866 final String name = file.getName().toLowerCase();
867 if (name.endsWith(".exe") || name.equals("autorun.inf")
868 || name.equals("launchpad.zip") || name.equals(".nomedia")) {
869 return false;
870 } else {
871 return true;
872 }
873 } else {
874 return false;
875 }
876 }
877
Felipe Lemeb012f912016-01-22 16:49:55 -0800878 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700879 * Get a top-level shared/external storage directory for placing files of a
880 * particular type. This is where the user will typically place and manage
881 * their own files, so you should be careful about what you put here to
882 * ensure you don't erase their files or get in the way of their own
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800883 * organization.
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700884 * <p>
885 * On devices with multiple users (as described by {@link UserManager}),
886 * each user has their own isolated shared storage. Applications only have
887 * access to the shared storage for the user they're running as.
888 * </p>
889 * <p>
890 * Here is an example of typical code to manipulate a picture on the public
891 * shared storage:
892 * </p>
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800893 * {@sample development/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java
894 * public_picture}
Felipe Lemec7b1f892016-01-15 15:02:31 -0800895 *
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700896 * @param type The type of storage directory to return. Should be one of
897 * {@link #DIRECTORY_MUSIC}, {@link #DIRECTORY_PODCASTS},
898 * {@link #DIRECTORY_RINGTONES}, {@link #DIRECTORY_ALARMS},
899 * {@link #DIRECTORY_NOTIFICATIONS}, {@link #DIRECTORY_PICTURES},
Felipe Lemec7b1f892016-01-15 15:02:31 -0800900 * {@link #DIRECTORY_MOVIES}, {@link #DIRECTORY_DOWNLOADS},
901 * {@link #DIRECTORY_DCIM}, or {@link #DIRECTORY_DOCUMENTS}. May not be null.
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700902 * @return Returns the File path for the directory. Note that this directory
903 * may not yet exist, so you must make sure it exists before using
904 * it such as with {@link File#mkdirs File.mkdirs()}.
Jeff Sharkey488162b2019-04-27 17:03:54 -0600905 * @deprecated To improve user privacy, direct access to shared/external
906 * storage devices is deprecated. When an app targets
907 * {@link android.os.Build.VERSION_CODES#Q}, the path returned
908 * from this method is no longer directly accessible to apps.
909 * Apps can continue to access content stored on shared/external
910 * storage by migrating to alternatives such as
911 * {@link Context#getExternalFilesDir(String)},
912 * {@link MediaStore}, or {@link Intent#ACTION_OPEN_DOCUMENT}.
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800913 */
Jeff Sharkey488162b2019-04-27 17:03:54 -0600914 @Deprecated
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800915 public static File getExternalStoragePublicDirectory(String type) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700916 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000917 return sCurrentUser.buildExternalStoragePublicDirs(type)[0];
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800918 }
919
920 /**
921 * Returns the path for android-specific data on the SD card.
922 * @hide
923 */
Andrei Onea24ec3212019-03-15 17:35:05 +0000924 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700925 public static File[] buildExternalStorageAndroidDataDirs() {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700926 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000927 return sCurrentUser.buildExternalStorageAndroidDataDirs();
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800928 }
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700929
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800930 /**
931 * Generates the raw path to an application's data
932 * @hide
933 */
Andrei Onea24ec3212019-03-15 17:35:05 +0000934 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700935 public static File[] buildExternalStorageAppDataDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700936 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000937 return sCurrentUser.buildExternalStorageAppDataDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800938 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800939
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800940 /**
941 * Generates the raw path to an application's media
942 * @hide
943 */
Andrei Onea24ec3212019-03-15 17:35:05 +0000944 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700945 public static File[] buildExternalStorageAppMediaDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700946 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000947 return sCurrentUser.buildExternalStorageAppMediaDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800948 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800949
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800950 /**
Dianne Hackborn805fd7e2011-01-16 18:30:29 -0800951 * Generates the raw path to an application's OBB files
952 * @hide
953 */
Andrei Onea24ec3212019-03-15 17:35:05 +0000954 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700955 public static File[] buildExternalStorageAppObbDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700956 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000957 return sCurrentUser.buildExternalStorageAppObbDirs(packageName);
Dianne Hackborn805fd7e2011-01-16 18:30:29 -0800958 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800959
Dianne Hackborn805fd7e2011-01-16 18:30:29 -0800960 /**
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800961 * Generates the path to an application's files.
962 * @hide
963 */
Andrei Onea24ec3212019-03-15 17:35:05 +0000964 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700965 public static File[] buildExternalStorageAppFilesDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700966 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000967 return sCurrentUser.buildExternalStorageAppFilesDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800968 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700969
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800970 /**
971 * Generates the path to an application's cache.
972 * @hide
973 */
Andrei Onea24ec3212019-03-15 17:35:05 +0000974 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700975 public static File[] buildExternalStorageAppCacheDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700976 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000977 return sCurrentUser.buildExternalStorageAppCacheDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800978 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800979
Sudheer Shanka25f1c6e2019-04-22 17:03:47 -0700980 /** @hide */
981 public static File[] buildExternalStoragePublicDirs(@NonNull String dirType) {
982 throwIfUserRequired();
983 return sCurrentUser.buildExternalStoragePublicDirs(dirType);
984 }
985
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800986 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700987 * Return the download/cache content directory.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800988 */
989 public static File getDownloadCacheDirectory() {
Jeff Sharkey15447792015-11-05 16:18:51 -0800990 return DIR_DOWNLOAD_CACHE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800991 }
992
993 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700994 * Unknown storage state, such as when a path isn't backed by known storage
995 * media.
996 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800997 * @see #getExternalStorageState(File)
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700998 */
999 public static final String MEDIA_UNKNOWN = "unknown";
1000
1001 /**
1002 * Storage state if the media is not present.
1003 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001004 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001005 */
1006 public static final String MEDIA_REMOVED = "removed";
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001007
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001008 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001009 * Storage state if the media is present but not mounted.
1010 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001011 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001012 */
1013 public static final String MEDIA_UNMOUNTED = "unmounted";
1014
1015 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001016 * Storage state if the media is present and being disk-checked.
1017 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001018 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001019 */
1020 public static final String MEDIA_CHECKING = "checking";
1021
1022 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001023 * Storage state if the media is present but is blank or is using an
1024 * unsupported filesystem.
1025 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001026 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001027 */
1028 public static final String MEDIA_NOFS = "nofs";
1029
1030 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001031 * Storage state if the media is present and mounted at its mount point with
1032 * read/write access.
1033 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001034 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001035 */
1036 public static final String MEDIA_MOUNTED = "mounted";
1037
1038 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001039 * Storage state if the media is present and mounted at its mount point with
1040 * read-only access.
1041 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001042 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001043 */
1044 public static final String MEDIA_MOUNTED_READ_ONLY = "mounted_ro";
1045
1046 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001047 * Storage state if the media is present not mounted, and shared via USB
1048 * mass storage.
1049 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001050 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001051 */
1052 public static final String MEDIA_SHARED = "shared";
1053
1054 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001055 * Storage state if the media was removed before it was unmounted.
1056 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001057 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001058 */
1059 public static final String MEDIA_BAD_REMOVAL = "bad_removal";
1060
1061 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001062 * Storage state if the media is present but cannot be mounted. Typically
1063 * this happens if the file system on the media is corrupted.
1064 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001065 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001066 */
1067 public static final String MEDIA_UNMOUNTABLE = "unmountable";
1068
1069 /**
Jeff Sharkey48877892015-03-18 11:27:19 -07001070 * Storage state if the media is in the process of being ejected.
1071 *
1072 * @see #getExternalStorageState(File)
1073 */
1074 public static final String MEDIA_EJECTING = "ejecting";
1075
1076 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -07001077 * Returns the current state of the primary shared/external storage media.
Felipe Lemec7b1f892016-01-15 15:02:31 -08001078 *
Jeff Sharkey8c165792012-10-22 14:08:29 -07001079 * @see #getExternalStorageDirectory()
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001080 * @return one of {@link #MEDIA_UNKNOWN}, {@link #MEDIA_REMOVED},
1081 * {@link #MEDIA_UNMOUNTED}, {@link #MEDIA_CHECKING},
1082 * {@link #MEDIA_NOFS}, {@link #MEDIA_MOUNTED},
1083 * {@link #MEDIA_MOUNTED_READ_ONLY}, {@link #MEDIA_SHARED},
1084 * {@link #MEDIA_BAD_REMOVAL}, or {@link #MEDIA_UNMOUNTABLE}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001085 */
1086 public static String getExternalStorageState() {
Andreas Gamped281b422016-07-08 03:50:27 +00001087 final File externalDir = sCurrentUser.getExternalDirs()[0];
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001088 return getExternalStorageState(externalDir);
1089 }
1090
1091 /**
1092 * @deprecated use {@link #getExternalStorageState(File)}
1093 */
1094 @Deprecated
1095 public static String getStorageState(File path) {
1096 return getExternalStorageState(path);
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001097 }
1098
1099 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -07001100 * Returns the current state of the shared/external storage media at the
1101 * given path.
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001102 *
1103 * @return one of {@link #MEDIA_UNKNOWN}, {@link #MEDIA_REMOVED},
1104 * {@link #MEDIA_UNMOUNTED}, {@link #MEDIA_CHECKING},
1105 * {@link #MEDIA_NOFS}, {@link #MEDIA_MOUNTED},
1106 * {@link #MEDIA_MOUNTED_READ_ONLY}, {@link #MEDIA_SHARED},
1107 * {@link #MEDIA_BAD_REMOVAL}, or {@link #MEDIA_UNMOUNTABLE}.
1108 */
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001109 public static String getExternalStorageState(File path) {
Jeff Sharkey48877892015-03-18 11:27:19 -07001110 final StorageVolume volume = StorageManager.getStorageVolume(path, UserHandle.myUserId());
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001111 if (volume != null) {
Jeff Sharkey48877892015-03-18 11:27:19 -07001112 return volume.getState();
1113 } else {
1114 return MEDIA_UNKNOWN;
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001115 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001116 }
1117
Dianne Hackborn407f6252010-10-04 11:31:17 -07001118 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -07001119 * Returns whether the primary shared/external storage media is physically
1120 * removable.
Dianne Hackborn407f6252010-10-04 11:31:17 -07001121 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001122 * @return true if the storage device can be removed (such as an SD card),
1123 * or false if the storage device is built in and cannot be
1124 * physically removed.
Dianne Hackborn407f6252010-10-04 11:31:17 -07001125 */
1126 public static boolean isExternalStorageRemovable() {
Andreas Gamped281b422016-07-08 03:50:27 +00001127 final File externalDir = sCurrentUser.getExternalDirs()[0];
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001128 return isExternalStorageRemovable(externalDir);
Dianne Hackborn407f6252010-10-04 11:31:17 -07001129 }
1130
Kenny Roote1ff2142010-10-12 11:20:01 -07001131 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -07001132 * Returns whether the shared/external storage media at the given path is
1133 * physically removable.
Andy Stadler50c294f2011-03-07 19:13:42 -08001134 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001135 * @return true if the storage device can be removed (such as an SD card),
1136 * or false if the storage device is built in and cannot be
1137 * physically removed.
1138 * @throws IllegalArgumentException if the path is not a valid storage
1139 * device.
1140 */
Jeff Sharkeybcff13c2019-03-28 14:29:35 -06001141 public static boolean isExternalStorageRemovable(@NonNull File path) {
Jeff Sharkey48877892015-03-18 11:27:19 -07001142 final StorageVolume volume = StorageManager.getStorageVolume(path, UserHandle.myUserId());
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001143 if (volume != null) {
1144 return volume.isRemovable();
1145 } else {
1146 throw new IllegalArgumentException("Failed to find storage device at " + path);
1147 }
1148 }
1149
1150 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -07001151 * Returns whether the primary shared/external storage media is emulated.
1152 * <p>
1153 * The contents of emulated storage devices are backed by a private user
1154 * data partition, which means there is little benefit to apps storing data
1155 * here instead of the private directories returned by
1156 * {@link Context#getFilesDir()}, etc.
1157 * <p>
1158 * This returns true when emulated storage is backed by either internal
1159 * storage or an adopted storage device.
Andy Stadler50c294f2011-03-07 19:13:42 -08001160 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001161 * @see DevicePolicyManager#setStorageEncryption(android.content.ComponentName,
1162 * boolean)
Kenny Roote1ff2142010-10-12 11:20:01 -07001163 */
1164 public static boolean isExternalStorageEmulated() {
Andreas Gamped281b422016-07-08 03:50:27 +00001165 final File externalDir = sCurrentUser.getExternalDirs()[0];
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001166 return isExternalStorageEmulated(externalDir);
1167 }
1168
1169 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -07001170 * Returns whether the shared/external storage media at the given path is
1171 * emulated.
1172 * <p>
1173 * The contents of emulated storage devices are backed by a private user
1174 * data partition, which means there is little benefit to apps storing data
1175 * here instead of the private directories returned by
1176 * {@link Context#getFilesDir()}, etc.
1177 * <p>
1178 * This returns true when emulated storage is backed by either internal
1179 * storage or an adopted storage device.
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001180 *
1181 * @throws IllegalArgumentException if the path is not a valid storage
1182 * device.
1183 */
Jeff Sharkeybcff13c2019-03-28 14:29:35 -06001184 public static boolean isExternalStorageEmulated(@NonNull File path) {
Jeff Sharkey48877892015-03-18 11:27:19 -07001185 final StorageVolume volume = StorageManager.getStorageVolume(path, UserHandle.myUserId());
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001186 if (volume != null) {
1187 return volume.isEmulated();
1188 } else {
1189 throw new IllegalArgumentException("Failed to find storage device at " + path);
1190 }
Kenny Roote1ff2142010-10-12 11:20:01 -07001191 }
1192
Jeff Sharkeybcff13c2019-03-28 14:29:35 -06001193 /**
Jeff Sharkey8926fc12019-04-21 09:38:42 -06001194 * Returns whether the primary shared/external storage media is a legacy
1195 * view that includes files not owned by the app.
Jeff Sharkeybcff13c2019-03-28 14:29:35 -06001196 * <p>
1197 * This value may be different from the value requested by
Jeff Sharkey8926fc12019-04-21 09:38:42 -06001198 * {@code requestLegacyExternalStorage} in the app's manifest, since an app
1199 * may inherit its legacy state based on when it was first installed.
Jeff Sharkeybcff13c2019-03-28 14:29:35 -06001200 * <p>
Jeff Sharkey8926fc12019-04-21 09:38:42 -06001201 * Non-legacy apps can continue to discover and read media belonging to
1202 * other apps via {@link android.provider.MediaStore}.
Jeff Sharkeybcff13c2019-03-28 14:29:35 -06001203 */
Jeff Sharkey8926fc12019-04-21 09:38:42 -06001204 public static boolean isExternalStorageLegacy() {
Jeff Sharkeybcff13c2019-03-28 14:29:35 -06001205 final File externalDir = sCurrentUser.getExternalDirs()[0];
Jeff Sharkey8926fc12019-04-21 09:38:42 -06001206 return isExternalStorageLegacy(externalDir);
Jeff Sharkeybcff13c2019-03-28 14:29:35 -06001207 }
1208
1209 /**
1210 * Returns whether the shared/external storage media at the given path is a
Jeff Sharkey8926fc12019-04-21 09:38:42 -06001211 * legacy view that includes files not owned by the app.
Jeff Sharkeybcff13c2019-03-28 14:29:35 -06001212 * <p>
1213 * This value may be different from the value requested by
Jeff Sharkey8926fc12019-04-21 09:38:42 -06001214 * {@code requestLegacyExternalStorage} in the app's manifest, since an app
1215 * may inherit its legacy state based on when it was first installed.
Jeff Sharkeybcff13c2019-03-28 14:29:35 -06001216 * <p>
Jeff Sharkey8926fc12019-04-21 09:38:42 -06001217 * Non-legacy apps can continue to discover and read media belonging to
1218 * other apps via {@link android.provider.MediaStore}.
Jeff Sharkeybcff13c2019-03-28 14:29:35 -06001219 *
1220 * @throws IllegalArgumentException if the path is not a valid storage
1221 * device.
1222 */
Jeff Sharkey8926fc12019-04-21 09:38:42 -06001223 public static boolean isExternalStorageLegacy(@NonNull File path) {
Jeff Sharkeybcff13c2019-03-28 14:29:35 -06001224 final Context context = AppGlobals.getInitialApplication();
Sudheer Shanka572fdfd2019-06-04 16:46:57 -07001225 final int uid = context.getApplicationInfo().uid;
1226 if (Process.isIsolated(uid)) {
1227 return false;
1228 }
1229
1230 final PackageManager packageManager = context.getPackageManager();
1231 if (packageManager.isInstantApp()) {
1232 return false;
1233 }
1234
1235 if (packageManager.checkPermission(Manifest.permission.WRITE_MEDIA_STORAGE,
1236 context.getPackageName()) == PackageManager.PERMISSION_GRANTED) {
1237 return true;
1238 }
1239
1240 if (packageManager.checkPermission(Manifest.permission.INSTALL_PACKAGES,
1241 context.getPackageName()) == PackageManager.PERMISSION_GRANTED) {
1242 return true;
1243 }
Jeff Sharkeybcff13c2019-03-28 14:29:35 -06001244 final AppOpsManager appOps = context.getSystemService(AppOpsManager.class);
Sudheer Shanka572fdfd2019-06-04 16:46:57 -07001245 final String[] packagesForUid = packageManager.getPackagesForUid(uid);
1246 for (String packageName : packagesForUid) {
1247 if (appOps.checkOpNoThrow(AppOpsManager.OP_REQUEST_INSTALL_PACKAGES,
1248 uid, packageName) == AppOpsManager.MODE_ALLOWED) {
1249 return true;
1250 }
1251 }
Jeff Sharkeye9fcabc2019-04-04 11:19:22 -06001252
Svet Ganovd563e932019-04-14 13:07:41 -07001253 return appOps.checkOpNoThrow(AppOpsManager.OP_LEGACY_STORAGE,
Sudheer Shanka572fdfd2019-06-04 16:46:57 -07001254 uid, context.getOpPackageName()) == AppOpsManager.MODE_ALLOWED;
Jeff Sharkeybcff13c2019-03-28 14:29:35 -06001255 }
1256
shafik81870652020-03-05 12:59:15 +00001257 /**
1258 * Returns whether the calling app has All Files Access on the primary shared/external storage
1259 * media.
1260 * <p>Declaring the permission {@link android.Manifest.permission#MANAGE_EXTERNAL_STORAGE} isn't
1261 * enough to gain the access.
1262 * <p>To request access, use
1263 * {@link android.provider.Settings#ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION}.
1264 */
1265 public static boolean isExternalStorageManager() {
1266 final File externalDir = sCurrentUser.getExternalDirs()[0];
1267 return isExternalStorageManager(externalDir);
1268 }
1269
1270 /**
1271 * Returns whether the calling app has All Files Access at the given {@code path}
1272 * <p>Declaring the permission {@link android.Manifest.permission#MANAGE_EXTERNAL_STORAGE} isn't
1273 * enough to gain the access.
1274 * <p>To request access, use
1275 * {@link android.provider.Settings#ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION}.
1276 */
1277 public static boolean isExternalStorageManager(@NonNull File path) {
1278 final Context context = Objects.requireNonNull(AppGlobals.getInitialApplication());
1279 String packageName = Objects.requireNonNull(context.getPackageName());
1280 int uid = context.getApplicationInfo().uid;
1281
1282 final AppOpsManager appOps = context.getSystemService(AppOpsManager.class);
1283 final int opMode =
1284 appOps.checkOpNoThrow(AppOpsManager.OP_MANAGE_EXTERNAL_STORAGE, uid, packageName);
1285
1286 switch (opMode) {
1287 case AppOpsManager.MODE_DEFAULT:
1288 return PackageManager.PERMISSION_GRANTED
1289 == context.checkPermission(
1290 Manifest.permission.MANAGE_EXTERNAL_STORAGE, Process.myPid(), uid);
1291 case AppOpsManager.MODE_ALLOWED:
1292 return true;
1293 case AppOpsManager.MODE_ERRORED:
1294 case AppOpsManager.MODE_IGNORED:
1295 return false;
1296 default:
1297 throw new IllegalStateException("Unknown AppOpsManager mode " + opMode);
1298 }
1299 }
1300
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001301 static File getDirectory(String variableName, String defaultPath) {
1302 String path = System.getenv(variableName);
1303 return path == null ? new File(defaultPath) : new File(path);
1304 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -07001305
Jeff Sharkey48749fc2013-04-19 13:25:04 -07001306 /** {@hide} */
1307 public static void setUserRequired(boolean userRequired) {
Andreas Gamped281b422016-07-08 03:50:27 +00001308 sUserRequired = userRequired;
Jeff Sharkey48749fc2013-04-19 13:25:04 -07001309 }
1310
1311 private static void throwIfUserRequired() {
Andreas Gamped281b422016-07-08 03:50:27 +00001312 if (sUserRequired) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -07001313 Log.wtf(TAG, "Path requests must specify a user by using UserEnvironment",
1314 new Throwable());
Jeff Sharkeyb049e212012-09-07 23:16:01 -07001315 }
1316 }
1317
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001318 /**
1319 * Append path segments to each given base path, returning result.
1320 *
1321 * @hide
1322 */
Andrei Onea24ec3212019-03-15 17:35:05 +00001323 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001324 public static File[] buildPaths(File[] base, String... segments) {
1325 File[] result = new File[base.length];
1326 for (int i = 0; i < base.length; i++) {
1327 result[i] = buildPath(base[i], segments);
1328 }
1329 return result;
1330 }
1331
1332 /**
1333 * Append path segments to given base path, returning result.
1334 *
1335 * @hide
1336 */
Philip P. Moltmannf80809f2018-04-04 11:20:44 -07001337 @TestApi
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001338 public static File buildPath(File base, String... segments) {
Jeff Sharkeyb049e212012-09-07 23:16:01 -07001339 File cur = base;
1340 for (String segment : segments) {
1341 if (cur == null) {
1342 cur = new File(segment);
1343 } else {
1344 cur = new File(cur, segment);
1345 }
1346 }
1347 return cur;
1348 }
Jeff Sharkey63d0a062013-03-01 16:12:55 -08001349
1350 /**
1351 * If the given path exists on emulated external storage, return the
1352 * translated backing path hosted on internal storage. This bypasses any
1353 * emulation later, improving performance. This is <em>only</em> suitable
1354 * for read-only access.
1355 * <p>
1356 * Returns original path if given path doesn't meet these criteria. Callers
1357 * must hold {@link android.Manifest.permission#WRITE_MEDIA_STORAGE}
1358 * permission.
1359 *
Jeff Sharkey70eb34a2018-09-13 11:57:03 -06001360 * @deprecated disabled now that FUSE has been replaced by sdcardfs
Jeff Sharkey63d0a062013-03-01 16:12:55 -08001361 * @hide
1362 */
Andrei Onea24ec3212019-03-15 17:35:05 +00001363 @UnsupportedAppUsage
Jeff Sharkey70eb34a2018-09-13 11:57:03 -06001364 @Deprecated
Jeff Sharkey63d0a062013-03-01 16:12:55 -08001365 public static File maybeTranslateEmulatedPathToInternal(File path) {
Jeff Sharkey50a05452015-04-29 11:24:52 -07001366 return StorageManager.maybeTranslateEmulatedPathToInternal(path);
Jeff Sharkey63d0a062013-03-01 16:12:55 -08001367 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001368}