blob: cceb6edc4c0a489c1123ce933b4ffd7b80bdcdee [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
Jeff Sharkeya30e5c32019-02-28 12:02:10 -070019import android.annotation.NonNull;
Jeff Sharkey70eb34a2018-09-13 11:57:03 -060020import android.annotation.SystemApi;
Philip P. Moltmannf80809f2018-04-04 11:20:44 -070021import android.annotation.TestApi;
Andrei Onea24ec3212019-03-15 17:35:05 +000022import android.annotation.UnsupportedAppUsage;
Jeff Sharkey4ca728c2014-01-10 16:27:19 -080023import android.app.admin.DevicePolicyManager;
Jeff Sharkey1abdb712013-08-11 16:28:14 -070024import android.content.Context;
Jeff Sharkey48877892015-03-18 11:27:19 -070025import android.os.storage.StorageManager;
Mike Lockwood2f6a3882011-05-09 19:08:06 -070026import android.os.storage.StorageVolume;
Jeff Sharkeybd0e9e42015-04-30 16:04:50 -070027import android.text.TextUtils;
Kenny Rootb2278dc2011-01-18 13:03:28 -080028import android.util.Log;
San Mehat7fd0fee2009-12-17 07:12:23 -080029
Gilles Debunneee1d6302011-05-13 10:09:32 -070030import java.io.File;
Jeff Sharkey20356142017-12-06 15:22:05 -070031import java.util.LinkedList;
Gilles Debunneee1d6302011-05-13 10:09:32 -070032
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033/**
34 * Provides access to environment variables.
35 */
36public class Environment {
Kenny Rootb2278dc2011-01-18 13:03:28 -080037 private static final String TAG = "Environment";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038
Jeff Sharkeydd02e332018-06-27 14:41:57 -060039 // NOTE: keep credential-protected paths in sync with StrictMode.java
40
Jeff Sharkeyb049e212012-09-07 23:16:01 -070041 private static final String ENV_EXTERNAL_STORAGE = "EXTERNAL_STORAGE";
Jeff Sharkey63d0a062013-03-01 16:12:55 -080042 private static final String ENV_ANDROID_ROOT = "ANDROID_ROOT";
Jeff Sharkey48877892015-03-18 11:27:19 -070043 private static final String ENV_ANDROID_DATA = "ANDROID_DATA";
Jeff Sharkeycf3f0a12016-03-17 19:57:58 -060044 private static final String ENV_ANDROID_EXPAND = "ANDROID_EXPAND";
Jeff Sharkey48877892015-03-18 11:27:19 -070045 private static final String ENV_ANDROID_STORAGE = "ANDROID_STORAGE";
Jeff Sharkey15447792015-11-05 16:18:51 -080046 private static final String ENV_DOWNLOAD_CACHE = "DOWNLOAD_CACHE";
Jeff Sharkey1be762c2014-03-06 09:56:23 -080047 private static final String ENV_OEM_ROOT = "OEM_ROOT";
Hung-ying Tyanbdc9d582015-11-20 11:53:39 +080048 private static final String ENV_ODM_ROOT = "ODM_ROOT";
Christopher Tate740888f2014-04-18 12:24:57 -070049 private static final String ENV_VENDOR_ROOT = "VENDOR_ROOT";
Jaekyun Seok1713d9e2018-01-12 21:47:26 +090050 private static final String ENV_PRODUCT_ROOT = "PRODUCT_ROOT";
Dario Freni2bef1762018-06-01 14:02:08 +010051 private static final String ENV_PRODUCT_SERVICES_ROOT = "PRODUCT_SERVICES_ROOT";
Jeff Sharkeyb049e212012-09-07 23:16:01 -070052
Jeff Sharkeydfa45302012-09-12 16:25:22 -070053 /** {@hide} */
Jeff Sharkey1abdb712013-08-11 16:28:14 -070054 public static final String DIR_ANDROID = "Android";
Sudheer Shankae93db512019-01-11 16:05:28 -080055 private static final String DIR_SANDBOX = "sandbox";
Jeff Sharkey1abdb712013-08-11 16:28:14 -070056 private static final String DIR_DATA = "data";
57 private static final String DIR_MEDIA = "media";
58 private static final String DIR_OBB = "obb";
59 private static final String DIR_FILES = "files";
60 private static final String DIR_CACHE = "cache";
61
62 /** {@hide} */
63 @Deprecated
64 public static final String DIRECTORY_ANDROID = DIR_ANDROID;
Jeff Sharkeydfa45302012-09-12 16:25:22 -070065
Jeff Sharkey63d0a062013-03-01 16:12:55 -080066 private static final File DIR_ANDROID_ROOT = getDirectory(ENV_ANDROID_ROOT, "/system");
Jeff Sharkey48877892015-03-18 11:27:19 -070067 private static final File DIR_ANDROID_DATA = getDirectory(ENV_ANDROID_DATA, "/data");
Jeff Sharkeycf3f0a12016-03-17 19:57:58 -060068 private static final File DIR_ANDROID_EXPAND = getDirectory(ENV_ANDROID_EXPAND, "/mnt/expand");
Jeff Sharkey48877892015-03-18 11:27:19 -070069 private static final File DIR_ANDROID_STORAGE = getDirectory(ENV_ANDROID_STORAGE, "/storage");
Jeff Sharkey15447792015-11-05 16:18:51 -080070 private static final File DIR_DOWNLOAD_CACHE = getDirectory(ENV_DOWNLOAD_CACHE, "/cache");
Jeff Sharkey1be762c2014-03-06 09:56:23 -080071 private static final File DIR_OEM_ROOT = getDirectory(ENV_OEM_ROOT, "/oem");
Hung-ying Tyanbdc9d582015-11-20 11:53:39 +080072 private static final File DIR_ODM_ROOT = getDirectory(ENV_ODM_ROOT, "/odm");
Christopher Tate740888f2014-04-18 12:24:57 -070073 private static final File DIR_VENDOR_ROOT = getDirectory(ENV_VENDOR_ROOT, "/vendor");
Jaekyun Seok1713d9e2018-01-12 21:47:26 +090074 private static final File DIR_PRODUCT_ROOT = getDirectory(ENV_PRODUCT_ROOT, "/product");
Dario Freni2bef1762018-06-01 14:02:08 +010075 private static final File DIR_PRODUCT_SERVICES_ROOT = getDirectory(ENV_PRODUCT_SERVICES_ROOT,
76 "/product_services");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077
Andrei Onea24ec3212019-03-15 17:35:05 +000078 @UnsupportedAppUsage
Andreas Gamped281b422016-07-08 03:50:27 +000079 private static UserEnvironment sCurrentUser;
80 private static boolean sUserRequired;
Kenny Roote1ff2142010-10-12 11:20:01 -070081
Andreas Gamped281b422016-07-08 03:50:27 +000082 static {
83 initForCurrentUser();
Jeff Sharkeyb049e212012-09-07 23:16:01 -070084 }
85
86 /** {@hide} */
Andrei Onea24ec3212019-03-15 17:35:05 +000087 @UnsupportedAppUsage
Andreas Gamped281b422016-07-08 03:50:27 +000088 public static void initForCurrentUser() {
89 final int userId = UserHandle.myUserId();
90 sCurrentUser = new UserEnvironment(userId);
Jeff Sharkeyb049e212012-09-07 23:16:01 -070091 }
92
93 /** {@hide} */
94 public static class UserEnvironment {
Jeff Sharkey48877892015-03-18 11:27:19 -070095 private final int mUserId;
Jeff Sharkeyb049e212012-09-07 23:16:01 -070096
Andrei Onea24ec3212019-03-15 17:35:05 +000097 @UnsupportedAppUsage
Jeff Sharkeyb049e212012-09-07 23:16:01 -070098 public UserEnvironment(int userId) {
Jeff Sharkey48877892015-03-18 11:27:19 -070099 mUserId = userId;
100 }
Jeff Sharkey44cbdec2013-10-07 16:49:47 -0700101
Andrei Onea24ec3212019-03-15 17:35:05 +0000102 @UnsupportedAppUsage
Jeff Sharkey48877892015-03-18 11:27:19 -0700103 public File[] getExternalDirs() {
Jeff Sharkey46349872015-07-28 10:49:47 -0700104 final StorageVolume[] volumes = StorageManager.getVolumeList(mUserId,
105 StorageManager.FLAG_FOR_WRITE);
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -0700106 final File[] files = new File[volumes.length];
Jeff Sharkey48877892015-03-18 11:27:19 -0700107 for (int i = 0; i < volumes.length; i++) {
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -0700108 files[i] = volumes[i].getPathFile();
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -0700109 }
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -0700110 return files;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700111 }
112
Andrei Onea24ec3212019-03-15 17:35:05 +0000113 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700114 @Deprecated
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700115 public File getExternalStorageDirectory() {
Jeff Sharkey48877892015-03-18 11:27:19 -0700116 return getExternalDirs()[0];
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700117 }
118
Andrei Onea24ec3212019-03-15 17:35:05 +0000119 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700120 @Deprecated
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700121 public File getExternalStoragePublicDirectory(String type) {
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700122 return buildExternalStoragePublicDirs(type)[0];
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700123 }
124
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700125 public File[] buildExternalStoragePublicDirs(String type) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700126 return buildPaths(getExternalDirs(), type);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700127 }
128
Sudheer Shankae93db512019-01-11 16:05:28 -0800129 public File[] buildExternalStorageAndroidSandboxDirs() {
130 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_SANDBOX);
131 }
132
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700133 public File[] buildExternalStorageAndroidDataDirs() {
Jeff Sharkey48877892015-03-18 11:27:19 -0700134 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_DATA);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700135 }
136
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700137 public File[] buildExternalStorageAndroidObbDirs() {
Jeff Sharkey48877892015-03-18 11:27:19 -0700138 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_OBB);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700139 }
140
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700141 public File[] buildExternalStorageAppDataDirs(String packageName) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700142 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_DATA, packageName);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700143 }
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -0700144
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700145 public File[] buildExternalStorageAppMediaDirs(String packageName) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700146 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_MEDIA, packageName);
Jeff Sharkey2ee3c1e2014-05-30 15:38:35 -0700147 }
148
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700149 public File[] buildExternalStorageAppObbDirs(String packageName) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700150 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_OBB, packageName);
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700151 }
152
153 public File[] buildExternalStorageAppFilesDirs(String packageName) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700154 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_DATA, packageName, DIR_FILES);
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700155 }
156
157 public File[] buildExternalStorageAppCacheDirs(String packageName) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700158 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_DATA, packageName, DIR_CACHE);
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -0700159 }
Mike Lockwood2f6a3882011-05-09 19:08:06 -0700160 }
San Mehat7fd0fee2009-12-17 07:12:23 -0800161
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162 /**
Jeff Sharkey1be762c2014-03-06 09:56:23 -0800163 * Return root of the "system" partition holding the core Android OS.
164 * Always present and mounted read-only.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 */
Jeff Sharkeya30e5c32019-02-28 12:02:10 -0700166 public static @NonNull File getRootDirectory() {
Jeff Sharkey63d0a062013-03-01 16:12:55 -0800167 return DIR_ANDROID_ROOT;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168 }
169
Jeff Sharkey48877892015-03-18 11:27:19 -0700170 /** {@hide} */
Jeff Sharkeyc6091162018-06-29 17:15:40 -0600171 @TestApi
Jeff Sharkeya30e5c32019-02-28 12:02:10 -0700172 public static @NonNull File getStorageDirectory() {
Jeff Sharkey48877892015-03-18 11:27:19 -0700173 return DIR_ANDROID_STORAGE;
174 }
175
Jason parksa3cdaa52011-01-13 14:15:43 -0600176 /**
Jeff Sharkey1be762c2014-03-06 09:56:23 -0800177 * Return root directory of the "oem" partition holding OEM customizations,
178 * if any. If present, the partition is mounted read-only.
179 *
180 * @hide
181 */
Jeff Sharkey70eb34a2018-09-13 11:57:03 -0600182 @SystemApi
Jeff Sharkeya30e5c32019-02-28 12:02:10 -0700183 public static @NonNull File getOemDirectory() {
Jeff Sharkey1be762c2014-03-06 09:56:23 -0800184 return DIR_OEM_ROOT;
185 }
186
187 /**
Hung-ying Tyanbdc9d582015-11-20 11:53:39 +0800188 * Return root directory of the "odm" partition holding ODM customizations,
189 * if any. If present, the partition is mounted read-only.
190 *
191 * @hide
192 */
Jeff Sharkey70eb34a2018-09-13 11:57:03 -0600193 @SystemApi
Jeff Sharkeya30e5c32019-02-28 12:02:10 -0700194 public static @NonNull File getOdmDirectory() {
Hung-ying Tyanbdc9d582015-11-20 11:53:39 +0800195 return DIR_ODM_ROOT;
196 }
197
198 /**
Christopher Tate740888f2014-04-18 12:24:57 -0700199 * Return root directory of the "vendor" partition that holds vendor-provided
200 * software that should persist across simple reflashing of the "system" partition.
201 * @hide
202 */
Jeff Sharkey70eb34a2018-09-13 11:57:03 -0600203 @SystemApi
Jeff Sharkeya30e5c32019-02-28 12:02:10 -0700204 public static @NonNull File getVendorDirectory() {
Christopher Tate740888f2014-04-18 12:24:57 -0700205 return DIR_VENDOR_ROOT;
206 }
207
Jason parksa3cdaa52011-01-13 14:15:43 -0600208 /**
Jaekyun Seok1713d9e2018-01-12 21:47:26 +0900209 * Return root directory of the "product" partition holding product-specific
210 * customizations if any. If present, the partition is mounted read-only.
211 *
212 * @hide
213 */
Jeff Sharkey70eb34a2018-09-13 11:57:03 -0600214 @SystemApi
Anton Hansson09e47be2018-11-08 12:56:18 +0000215 @TestApi
Jeff Sharkeya30e5c32019-02-28 12:02:10 -0700216 public static @NonNull File getProductDirectory() {
Jaekyun Seok1713d9e2018-01-12 21:47:26 +0900217 return DIR_PRODUCT_ROOT;
218 }
219
220 /**
Dario Freni2bef1762018-06-01 14:02:08 +0100221 * Return root directory of the "product_services" partition holding middleware
222 * services if any. If present, the partition is mounted read-only.
223 *
224 * @hide
225 */
Jeff Sharkey70eb34a2018-09-13 11:57:03 -0600226 @SystemApi
Jeff Sharkeya30e5c32019-02-28 12:02:10 -0700227 public static @NonNull File getProductServicesDirectory() {
Dario Freni2bef1762018-06-01 14:02:08 +0100228 return DIR_PRODUCT_SERVICES_ROOT;
229 }
230
231 /**
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700232 * Return the system directory for a user. This is for use by system
233 * services to store files relating to the user. This directory will be
234 * automatically deleted when the user is removed.
Amith Yamasani61f57372012-08-31 12:12:28 -0700235 *
Jeff Sharkey3a6a61e2018-10-03 10:45:51 -0600236 * @deprecated This directory is valid and still exists, but but callers
237 * should <em>strongly</em> consider switching to using either
238 * {@link #getDataSystemCeDirectory(int)} or
239 * {@link #getDataSystemDeDirectory(int)}, both of which support
240 * fast user wipe.
Amith Yamasani61f57372012-08-31 12:12:28 -0700241 * @hide
242 */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700243 @Deprecated
Amith Yamasani61f57372012-08-31 12:12:28 -0700244 public static File getUserSystemDirectory(int userId) {
Jeff Sharkey15447792015-11-05 16:18:51 -0800245 return new File(new File(getDataSystemDirectory(), "users"), Integer.toString(userId));
Amith Yamasani61f57372012-08-31 12:12:28 -0700246 }
247
248 /**
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700249 * Returns the config directory for a user. This is for use by system
250 * services to store files relating to the user which should be readable by
251 * any app running as that user.
Robin Lee69591332014-04-28 16:03:22 +0100252 *
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700253 * @deprecated This directory is valid and still exists, but callers should
254 * <em>strongly</em> consider switching to
255 * {@link #getDataMiscCeDirectory(int)} which is protected with
256 * user credentials or {@link #getDataMiscDeDirectory(int)}
257 * which supports fast user wipe.
Robin Lee69591332014-04-28 16:03:22 +0100258 * @hide
259 */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700260 @Deprecated
Robin Lee69591332014-04-28 16:03:22 +0100261 public static File getUserConfigDirectory(int userId) {
262 return new File(new File(new File(
263 getDataDirectory(), "misc"), "user"), Integer.toString(userId));
264 }
265
266 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700267 * Return the user data directory.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800268 */
269 public static File getDataDirectory() {
Jeff Sharkey15447792015-11-05 16:18:51 -0800270 return DIR_ANDROID_DATA;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800271 }
272
Jeff Sharkeybd0e9e42015-04-30 16:04:50 -0700273 /** {@hide} */
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700274 public static File getDataDirectory(String volumeUuid) {
Jeff Sharkeybd0e9e42015-04-30 16:04:50 -0700275 if (TextUtils.isEmpty(volumeUuid)) {
Jeff Sharkey15447792015-11-05 16:18:51 -0800276 return DIR_ANDROID_DATA;
Jeff Sharkeybd0e9e42015-04-30 16:04:50 -0700277 } else {
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700278 return new File("/mnt/expand/" + volumeUuid);
Jeff Sharkeybd0e9e42015-04-30 16:04:50 -0700279 }
280 }
281
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700282 /** {@hide} */
Jeff Sharkeycf3f0a12016-03-17 19:57:58 -0600283 public static File getExpandDirectory() {
284 return DIR_ANDROID_EXPAND;
285 }
286
287 /** {@hide} */
Andrei Onea24ec3212019-03-15 17:35:05 +0000288 @UnsupportedAppUsage
Jeff Sharkey15447792015-11-05 16:18:51 -0800289 public static File getDataSystemDirectory() {
290 return new File(getDataDirectory(), "system");
291 }
292
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700293 /**
294 * Returns the base directory for per-user system directory, device encrypted.
295 * {@hide}
296 */
297 public static File getDataSystemDeDirectory() {
298 return buildPath(getDataDirectory(), "system_de");
299 }
300
301 /**
302 * Returns the base directory for per-user system directory, credential encrypted.
303 * {@hide}
304 */
305 public static File getDataSystemCeDirectory() {
306 return buildPath(getDataDirectory(), "system_ce");
307 }
308
Jeff Sharkey3a6a61e2018-10-03 10:45:51 -0600309 /**
310 * Return the "credential encrypted" system directory for a user. This is
311 * for use by system services to store files relating to the user. This
312 * directory supports fast user wipe, and will be automatically deleted when
313 * the user is removed.
314 * <p>
315 * Data stored under this path is "credential encrypted", which uses an
316 * encryption key that is entangled with user credentials, such as a PIN or
317 * password. The contents will only be available once the user has been
318 * unlocked, as reported by {@code SystemService.onUnlockUser()}.
319 * <p>
320 * New code should <em>strongly</em> prefer storing sensitive data in these
321 * credential encrypted areas.
322 *
323 * @hide
324 */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700325 public static File getDataSystemCeDirectory(int userId) {
326 return buildPath(getDataDirectory(), "system_ce", String.valueOf(userId));
Jeff Sharkey15447792015-11-05 16:18:51 -0800327 }
328
Jeff Sharkey3a6a61e2018-10-03 10:45:51 -0600329 /**
330 * Return the "device encrypted" system directory for a user. This is for
331 * use by system services to store files relating to the user. This
332 * directory supports fast user wipe, and will be automatically deleted when
333 * the user is removed.
334 * <p>
335 * Data stored under this path is "device encrypted", which uses an
336 * encryption key that is tied to the physical device. The contents will
337 * only be available once the device has finished a {@code dm-verity}
338 * protected boot.
339 * <p>
340 * New code should <em>strongly</em> avoid storing sensitive data in these
341 * device encrypted areas.
342 *
343 * @hide
344 */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700345 public static File getDataSystemDeDirectory(int userId) {
346 return buildPath(getDataDirectory(), "system_de", String.valueOf(userId));
347 }
348
349 /** {@hide} */
350 public static File getDataMiscDirectory() {
351 return new File(getDataDirectory(), "misc");
352 }
353
354 /** {@hide} */
Amith Yamasania2807132017-01-26 12:35:14 -0800355 public static File getDataMiscCeDirectory() {
356 return buildPath(getDataDirectory(), "misc_ce");
357 }
358
359 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700360 public static File getDataMiscCeDirectory(int userId) {
361 return buildPath(getDataDirectory(), "misc_ce", String.valueOf(userId));
362 }
363
364 /** {@hide} */
365 public static File getDataMiscDeDirectory(int userId) {
366 return buildPath(getDataDirectory(), "misc_de", String.valueOf(userId));
Jeff Sharkey15447792015-11-05 16:18:51 -0800367 }
368
Calin Juravled479b522016-02-24 16:22:03 +0000369 private static File getDataProfilesDeDirectory(int userId) {
370 return buildPath(getDataDirectory(), "misc", "profiles", "cur", String.valueOf(userId));
371 }
372
373 /** {@hide} */
Andreas Huber7fe20532018-01-22 11:26:44 -0800374 public static File getDataVendorCeDirectory(int userId) {
375 return buildPath(getDataDirectory(), "vendor_ce", String.valueOf(userId));
376 }
377
378 /** {@hide} */
379 public static File getDataVendorDeDirectory(int userId) {
380 return buildPath(getDataDirectory(), "vendor_de", String.valueOf(userId));
381 }
382
383 /** {@hide} */
Calin Juravle6ae39fc2018-01-19 20:32:47 -0800384 public static File getDataRefProfilesDePackageDirectory(String packageName) {
385 return buildPath(getDataDirectory(), "misc", "profiles", "ref", packageName);
Calin Juravle0bd77622016-07-12 15:56:41 +0100386 }
387
388 /** {@hide} */
Calin Juravled479b522016-02-24 16:22:03 +0000389 public static File getDataProfilesDePackageDirectory(int userId, String packageName) {
390 return buildPath(getDataProfilesDeDirectory(userId), packageName);
391 }
392
393 /** {@hide} */
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700394 public static File getDataAppDirectory(String volumeUuid) {
395 return new File(getDataDirectory(volumeUuid), "app");
396 }
397
398 /** {@hide} */
Dario Frenia8f4b132018-12-30 00:36:49 +0000399 public static File getDataStagingDirectory(String volumeUuid) {
Gavin Corkery296c8b92019-02-27 12:06:24 +0000400 return new File(getDataDirectory(volumeUuid), "app-staging");
Dario Frenia8f4b132018-12-30 00:36:49 +0000401 }
402
403 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700404 public static File getDataUserCeDirectory(String volumeUuid) {
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700405 return new File(getDataDirectory(volumeUuid), "user");
406 }
407
408 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700409 public static File getDataUserCeDirectory(String volumeUuid, int userId) {
410 return new File(getDataUserCeDirectory(volumeUuid), String.valueOf(userId));
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700411 }
412
413 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700414 public static File getDataUserCePackageDirectory(String volumeUuid, int userId,
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700415 String packageName) {
416 // TODO: keep consistent with installd
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700417 return new File(getDataUserCeDirectory(volumeUuid, userId), packageName);
Jeff Sharkey15447792015-11-05 16:18:51 -0800418 }
419
420 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700421 public static File getDataUserDeDirectory(String volumeUuid) {
Jeff Sharkey15447792015-11-05 16:18:51 -0800422 return new File(getDataDirectory(volumeUuid), "user_de");
423 }
424
425 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700426 public static File getDataUserDeDirectory(String volumeUuid, int userId) {
427 return new File(getDataUserDeDirectory(volumeUuid), String.valueOf(userId));
Jeff Sharkey15447792015-11-05 16:18:51 -0800428 }
429
430 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700431 public static File getDataUserDePackageDirectory(String volumeUuid, int userId,
Jeff Sharkey15447792015-11-05 16:18:51 -0800432 String packageName) {
433 // TODO: keep consistent with installd
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700434 return new File(getDataUserDeDirectory(volumeUuid, userId), packageName);
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700435 }
436
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800437 /**
Fyodor Kupolov88257582016-05-24 16:06:56 -0700438 * Return preloads directory.
439 * <p>This directory may contain pre-loaded content such as
440 * {@link #getDataPreloadsDemoDirectory() demo videos} and
441 * {@link #getDataPreloadsAppsDirectory() APK files} .
442 * {@hide}
443 */
444 public static File getDataPreloadsDirectory() {
445 return new File(getDataDirectory(), "preloads");
446 }
447
448 /**
449 * @see #getDataPreloadsDirectory()
450 * {@hide}
451 */
452 public static File getDataPreloadsDemoDirectory() {
453 return new File(getDataPreloadsDirectory(), "demo");
454 }
455
456 /**
457 * @see #getDataPreloadsDirectory()
458 * {@hide}
459 */
460 public static File getDataPreloadsAppsDirectory() {
461 return new File(getDataPreloadsDirectory(), "apps");
462 }
463
464 /**
Fyodor Kupolov19551a82016-08-22 14:46:08 -0700465 * @see #getDataPreloadsDirectory()
466 * {@hide}
467 */
468 public static File getDataPreloadsMediaDirectory() {
469 return new File(getDataPreloadsDirectory(), "media");
470 }
471
472 /**
Fyodor Kupolov6e687062016-09-09 17:42:12 -0700473 * Returns location of preloaded cache directory for package name
474 * @see #getDataPreloadsDirectory()
475 * {@hide}
476 */
477 public static File getDataPreloadsFileCacheDirectory(String packageName) {
478 return new File(getDataPreloadsFileCacheDirectory(), packageName);
479 }
480
481 /**
482 * Returns location of preloaded cache directory.
483 * @see #getDataPreloadsDirectory()
484 * {@hide}
485 */
486 public static File getDataPreloadsFileCacheDirectory() {
487 return new File(getDataPreloadsDirectory(), "file_cache");
488 }
489
490 /**
Sudheer Shankabe0febe2018-11-07 18:24:37 -0800491 * Returns location of packages cache directory.
492 * {@hide}
493 */
494 public static File getPackageCacheDirectory() {
495 return new File(getDataSystemDirectory(), "package_cache");
496 }
497
498 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700499 * Return the primary shared/external storage directory. This directory may
500 * not currently be accessible if it has been mounted by the user on their
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800501 * computer, has been removed from the device, or some other problem has
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700502 * happened. You can determine its current state with
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800503 * {@link #getExternalStorageState()}.
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700504 * <p>
505 * <em>Note: don't be confused by the word "external" here. This directory
506 * can better be thought as media/shared storage. It is a filesystem that
507 * can hold a relatively large amount of data and that is shared across all
508 * applications (does not enforce permissions). Traditionally this is an SD
509 * card, but it may also be implemented as built-in storage in a device that
510 * is distinct from the protected internal storage and can be mounted as a
511 * filesystem on a computer.</em>
512 * <p>
513 * On devices with multiple users (as described by {@link UserManager}),
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700514 * each user has their own isolated shared storage. Applications only have
515 * access to the shared storage for the user they're running as.
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700516 * <p>
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700517 * In devices with multiple shared/external storage directories, this
518 * directory represents the primary storage that the user will interact
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700519 * with. Access to secondary storage is available through
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700520 * {@link Context#getExternalFilesDirs(String)},
521 * {@link Context#getExternalCacheDirs()}, and
522 * {@link Context#getExternalMediaDirs()}.
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700523 * <p>
524 * Applications should not directly use this top-level directory, in order
525 * to avoid polluting the user's root namespace. Any files that are private
526 * to the application should be placed in a directory returned by
527 * {@link android.content.Context#getExternalFilesDir
Dianne Hackbornacaf0282010-03-30 14:39:35 -0700528 * Context.getExternalFilesDir}, which the system will take care of deleting
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700529 * if the application is uninstalled. Other shared files should be placed in
530 * one of the directories returned by
531 * {@link #getExternalStoragePublicDirectory}.
532 * <p>
533 * Writing to this path requires the
534 * {@link android.Manifest.permission#WRITE_EXTERNAL_STORAGE} permission,
Felipe Leme04a5d402016-02-08 16:44:06 -0800535 * and starting in {@link android.os.Build.VERSION_CODES#KITKAT}, read access requires the
Jeff Sharkey8c165792012-10-22 14:08:29 -0700536 * {@link android.Manifest.permission#READ_EXTERNAL_STORAGE} permission,
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700537 * which is automatically granted if you hold the write permission.
538 * <p>
Chet Haasee8222dd2013-09-05 07:44:18 -0700539 * Starting in {@link android.os.Build.VERSION_CODES#KITKAT}, if your
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700540 * application only needs to store internal data, consider using
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700541 * {@link Context#getExternalFilesDir(String)},
542 * {@link Context#getExternalCacheDir()}, or
543 * {@link Context#getExternalMediaDirs()}, which require no permissions to
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700544 * read or write.
545 * <p>
546 * This path may change between platform versions, so applications should
547 * only persist relative paths.
548 * <p>
549 * Here is an example of typical code to monitor the state of external
550 * storage:
551 * <p>
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700552 * {@sample development/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800553 * monitor_storage}
Dianne Hackborn407f6252010-10-04 11:31:17 -0700554 *
555 * @see #getExternalStorageState()
556 * @see #isExternalStorageRemovable()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800557 */
558 public static File getExternalStorageDirectory() {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700559 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000560 return sCurrentUser.getExternalDirs()[0];
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700561 }
562
563 /** {@hide} */
Andrei Onea24ec3212019-03-15 17:35:05 +0000564 @UnsupportedAppUsage
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700565 public static File getLegacyExternalStorageDirectory() {
566 return new File(System.getenv(ENV_EXTERNAL_STORAGE));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800567 }
568
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700569 /** {@hide} */
Andrei Onea24ec3212019-03-15 17:35:05 +0000570 @UnsupportedAppUsage
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700571 public static File getLegacyExternalStorageObbDirectory() {
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700572 return buildPath(getLegacyExternalStorageDirectory(), DIR_ANDROID, DIR_OBB);
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700573 }
574
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800575 /**
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800576 * Standard directory in which to place any audio files that should be
577 * in the regular list of music for the user.
578 * This may be combined with
579 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS},
580 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
581 * of directories to categories a particular audio file as more than one
582 * type.
583 */
584 public static String DIRECTORY_MUSIC = "Music";
Felipe Lemec7b1f892016-01-15 15:02:31 -0800585
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800586 /**
587 * Standard directory in which to place any audio files that should be
588 * in the list of podcasts that the user can select (not as regular
589 * music).
590 * This may be combined with {@link #DIRECTORY_MUSIC},
591 * {@link #DIRECTORY_NOTIFICATIONS},
592 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
593 * of directories to categories a particular audio file as more than one
594 * type.
595 */
596 public static String DIRECTORY_PODCASTS = "Podcasts";
Felipe Lemeb012f912016-01-22 16:49:55 -0800597
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800598 /**
599 * Standard directory in which to place any audio files that should be
600 * in the list of ringtones that the user can select (not as regular
601 * music).
602 * This may be combined with {@link #DIRECTORY_MUSIC},
603 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS}, and
604 * {@link #DIRECTORY_ALARMS} as a series
605 * of directories to categories a particular audio file as more than one
606 * type.
607 */
608 public static String DIRECTORY_RINGTONES = "Ringtones";
Felipe Lemeb012f912016-01-22 16:49:55 -0800609
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800610 /**
611 * Standard directory in which to place any audio files that should be
612 * in the list of alarms that the user can select (not as regular
613 * music).
614 * This may be combined with {@link #DIRECTORY_MUSIC},
615 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS},
616 * and {@link #DIRECTORY_RINGTONES} as a series
617 * of directories to categories a particular audio file as more than one
618 * type.
619 */
620 public static String DIRECTORY_ALARMS = "Alarms";
Felipe Lemeb012f912016-01-22 16:49:55 -0800621
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800622 /**
623 * Standard directory in which to place any audio files that should be
624 * in the list of notifications that the user can select (not as regular
625 * music).
626 * This may be combined with {@link #DIRECTORY_MUSIC},
627 * {@link #DIRECTORY_PODCASTS},
628 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
629 * of directories to categories a particular audio file as more than one
630 * type.
631 */
632 public static String DIRECTORY_NOTIFICATIONS = "Notifications";
Felipe Lemeb012f912016-01-22 16:49:55 -0800633
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800634 /**
635 * Standard directory in which to place pictures that are available to
636 * the user. Note that this is primarily a convention for the top-level
637 * public directory, as the media scanner will find and collect pictures
638 * in any directory.
639 */
640 public static String DIRECTORY_PICTURES = "Pictures";
Felipe Lemeb012f912016-01-22 16:49:55 -0800641
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800642 /**
643 * Standard directory in which to place movies that are available to
644 * the user. Note that this is primarily a convention for the top-level
645 * public directory, as the media scanner will find and collect movies
646 * in any directory.
647 */
648 public static String DIRECTORY_MOVIES = "Movies";
Felipe Lemeb012f912016-01-22 16:49:55 -0800649
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800650 /**
651 * Standard directory in which to place files that have been downloaded by
652 * the user. Note that this is primarily a convention for the top-level
653 * public directory, you are free to download files anywhere in your own
Dianne Hackbornce59fb82010-04-07 17:19:04 -0700654 * private directories. Also note that though the constant here is
655 * named DIRECTORY_DOWNLOADS (plural), the actual file name is non-plural for
656 * backwards compatibility reasons.
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800657 */
Dianne Hackbornce59fb82010-04-07 17:19:04 -0700658 public static String DIRECTORY_DOWNLOADS = "Download";
Felipe Lemeb012f912016-01-22 16:49:55 -0800659
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800660 /**
661 * The traditional location for pictures and videos when mounting the
662 * device as a camera. Note that this is primarily a convention for the
663 * top-level public directory, as this convention makes no sense elsewhere.
664 */
665 public static String DIRECTORY_DCIM = "DCIM";
Jeff Sharkey3e1189b2013-09-12 21:59:06 -0700666
667 /**
668 * Standard directory in which to place documents that have been created by
669 * the user.
670 */
671 public static String DIRECTORY_DOCUMENTS = "Documents";
672
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800673 /**
Jeff Sharkeyc8e49242018-11-02 14:34:44 -0600674 * Standard directory in which to place screenshots that have been taken by
675 * the user. Typically used as a secondary directory under
676 * {@link #DIRECTORY_PICTURES}.
677 */
678 public static String DIRECTORY_SCREENSHOTS = "Screenshots";
679
680 /**
Jeff Sharkey10887d52018-11-30 13:44:41 -0700681 * Standard directory in which to place any audio files which are
682 * audiobooks.
683 */
684 public static String DIRECTORY_AUDIOBOOKS = "Audiobooks";
685
686 /**
Felipe Lemec7b1f892016-01-15 15:02:31 -0800687 * List of standard storage directories.
688 * <p>
689 * Each of its values have its own constant:
690 * <ul>
691 * <li>{@link #DIRECTORY_MUSIC}
692 * <li>{@link #DIRECTORY_PODCASTS}
693 * <li>{@link #DIRECTORY_ALARMS}
694 * <li>{@link #DIRECTORY_RINGTONES}
695 * <li>{@link #DIRECTORY_NOTIFICATIONS}
696 * <li>{@link #DIRECTORY_PICTURES}
697 * <li>{@link #DIRECTORY_MOVIES}
698 * <li>{@link #DIRECTORY_DOWNLOADS}
699 * <li>{@link #DIRECTORY_DCIM}
700 * <li>{@link #DIRECTORY_DOCUMENTS}
Jeff Sharkey10887d52018-11-30 13:44:41 -0700701 * <li>{@link #DIRECTORY_AUDIOBOOKS}
Felipe Lemec7b1f892016-01-15 15:02:31 -0800702 * </ul>
703 * @hide
704 */
Felipe Leme3e166b22016-02-24 10:17:41 -0800705 public static final String[] STANDARD_DIRECTORIES = {
Felipe Lemec7b1f892016-01-15 15:02:31 -0800706 DIRECTORY_MUSIC,
707 DIRECTORY_PODCASTS,
708 DIRECTORY_RINGTONES,
709 DIRECTORY_ALARMS,
710 DIRECTORY_NOTIFICATIONS,
711 DIRECTORY_PICTURES,
712 DIRECTORY_MOVIES,
713 DIRECTORY_DOWNLOADS,
714 DIRECTORY_DCIM,
Jeff Sharkey10887d52018-11-30 13:44:41 -0700715 DIRECTORY_DOCUMENTS,
716 DIRECTORY_AUDIOBOOKS,
Felipe Lemec7b1f892016-01-15 15:02:31 -0800717 };
718
719 /**
Felipe Lemeb012f912016-01-22 16:49:55 -0800720 * @hide
721 */
722 public static boolean isStandardDirectory(String dir) {
723 for (String valid : STANDARD_DIRECTORIES) {
724 if (valid.equals(dir)) {
725 return true;
726 }
727 }
728 return false;
729 }
730
Jeff Sharkey20356142017-12-06 15:22:05 -0700731 /** {@hide} */ public static final int HAS_MUSIC = 1 << 0;
732 /** {@hide} */ public static final int HAS_PODCASTS = 1 << 1;
733 /** {@hide} */ public static final int HAS_RINGTONES = 1 << 2;
734 /** {@hide} */ public static final int HAS_ALARMS = 1 << 3;
735 /** {@hide} */ public static final int HAS_NOTIFICATIONS = 1 << 4;
736 /** {@hide} */ public static final int HAS_PICTURES = 1 << 5;
737 /** {@hide} */ public static final int HAS_MOVIES = 1 << 6;
738 /** {@hide} */ public static final int HAS_DOWNLOADS = 1 << 7;
739 /** {@hide} */ public static final int HAS_DCIM = 1 << 8;
740 /** {@hide} */ public static final int HAS_DOCUMENTS = 1 << 9;
Jeff Sharkey10887d52018-11-30 13:44:41 -0700741 /** {@hide} */ public static final int HAS_AUDIOBOOKS = 1 << 10;
Jeff Sharkey20356142017-12-06 15:22:05 -0700742
743 /** {@hide} */ public static final int HAS_ANDROID = 1 << 16;
744 /** {@hide} */ public static final int HAS_OTHER = 1 << 17;
745
746 /**
747 * Classify the content types present on the given external storage device.
748 * <p>
749 * This is typically useful for deciding if an inserted SD card is empty, or
750 * if it contains content like photos that should be preserved.
751 *
752 * @hide
753 */
754 public static int classifyExternalStorageDirectory(File dir) {
755 int res = 0;
756 for (File f : FileUtils.listFilesOrEmpty(dir)) {
757 if (f.isFile() && isInterestingFile(f)) {
758 res |= HAS_OTHER;
759 } else if (f.isDirectory() && hasInterestingFiles(f)) {
760 final String name = f.getName();
761 if (DIRECTORY_MUSIC.equals(name)) res |= HAS_MUSIC;
762 else if (DIRECTORY_PODCASTS.equals(name)) res |= HAS_PODCASTS;
763 else if (DIRECTORY_RINGTONES.equals(name)) res |= HAS_RINGTONES;
764 else if (DIRECTORY_ALARMS.equals(name)) res |= HAS_ALARMS;
765 else if (DIRECTORY_NOTIFICATIONS.equals(name)) res |= HAS_NOTIFICATIONS;
766 else if (DIRECTORY_PICTURES.equals(name)) res |= HAS_PICTURES;
767 else if (DIRECTORY_MOVIES.equals(name)) res |= HAS_MOVIES;
768 else if (DIRECTORY_DOWNLOADS.equals(name)) res |= HAS_DOWNLOADS;
769 else if (DIRECTORY_DCIM.equals(name)) res |= HAS_DCIM;
770 else if (DIRECTORY_DOCUMENTS.equals(name)) res |= HAS_DOCUMENTS;
Jeff Sharkey10887d52018-11-30 13:44:41 -0700771 else if (DIRECTORY_AUDIOBOOKS.equals(name)) res |= HAS_AUDIOBOOKS;
Jeff Sharkey20356142017-12-06 15:22:05 -0700772 else if (DIRECTORY_ANDROID.equals(name)) res |= HAS_ANDROID;
773 else res |= HAS_OTHER;
774 }
775 }
776 return res;
777 }
778
779 private static boolean hasInterestingFiles(File dir) {
780 final LinkedList<File> explore = new LinkedList<>();
781 explore.add(dir);
782 while (!explore.isEmpty()) {
783 dir = explore.pop();
784 for (File f : FileUtils.listFilesOrEmpty(dir)) {
785 if (isInterestingFile(f)) return true;
786 if (f.isDirectory()) explore.add(f);
787 }
788 }
789 return false;
790 }
791
792 private static boolean isInterestingFile(File file) {
793 if (file.isFile()) {
794 final String name = file.getName().toLowerCase();
795 if (name.endsWith(".exe") || name.equals("autorun.inf")
796 || name.equals("launchpad.zip") || name.equals(".nomedia")) {
797 return false;
798 } else {
799 return true;
800 }
801 } else {
802 return false;
803 }
804 }
805
Felipe Lemeb012f912016-01-22 16:49:55 -0800806 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700807 * Get a top-level shared/external storage directory for placing files of a
808 * particular type. This is where the user will typically place and manage
809 * their own files, so you should be careful about what you put here to
810 * ensure you don't erase their files or get in the way of their own
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800811 * organization.
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700812 * <p>
813 * On devices with multiple users (as described by {@link UserManager}),
814 * each user has their own isolated shared storage. Applications only have
815 * access to the shared storage for the user they're running as.
816 * </p>
817 * <p>
818 * Here is an example of typical code to manipulate a picture on the public
819 * shared storage:
820 * </p>
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800821 * {@sample development/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java
822 * public_picture}
Felipe Lemec7b1f892016-01-15 15:02:31 -0800823 *
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700824 * @param type The type of storage directory to return. Should be one of
825 * {@link #DIRECTORY_MUSIC}, {@link #DIRECTORY_PODCASTS},
826 * {@link #DIRECTORY_RINGTONES}, {@link #DIRECTORY_ALARMS},
827 * {@link #DIRECTORY_NOTIFICATIONS}, {@link #DIRECTORY_PICTURES},
Felipe Lemec7b1f892016-01-15 15:02:31 -0800828 * {@link #DIRECTORY_MOVIES}, {@link #DIRECTORY_DOWNLOADS},
829 * {@link #DIRECTORY_DCIM}, or {@link #DIRECTORY_DOCUMENTS}. May not be null.
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700830 * @return Returns the File path for the directory. Note that this directory
831 * may not yet exist, so you must make sure it exists before using
832 * it such as with {@link File#mkdirs File.mkdirs()}.
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800833 */
834 public static File getExternalStoragePublicDirectory(String type) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700835 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000836 return sCurrentUser.buildExternalStoragePublicDirs(type)[0];
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800837 }
838
839 /**
840 * Returns the path for android-specific data on the SD card.
841 * @hide
842 */
Sudheer Shankae93db512019-01-11 16:05:28 -0800843 public static File[] buildExternalStorageAndroidSandboxDirs() {
844 throwIfUserRequired();
845 return sCurrentUser.buildExternalStorageAndroidSandboxDirs();
846 }
847
848 /**
849 * Returns the path for android-specific data on the SD card.
850 * @hide
851 */
Andrei Onea24ec3212019-03-15 17:35:05 +0000852 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700853 public static File[] buildExternalStorageAndroidDataDirs() {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700854 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000855 return sCurrentUser.buildExternalStorageAndroidDataDirs();
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800856 }
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700857
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800858 /**
859 * Generates the raw path to an application's data
860 * @hide
861 */
Andrei Onea24ec3212019-03-15 17:35:05 +0000862 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700863 public static File[] buildExternalStorageAppDataDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700864 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000865 return sCurrentUser.buildExternalStorageAppDataDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800866 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800867
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800868 /**
869 * Generates the raw path to an application's media
870 * @hide
871 */
Andrei Onea24ec3212019-03-15 17:35:05 +0000872 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700873 public static File[] buildExternalStorageAppMediaDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700874 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000875 return sCurrentUser.buildExternalStorageAppMediaDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800876 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800877
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800878 /**
Dianne Hackborn805fd7e2011-01-16 18:30:29 -0800879 * Generates the raw path to an application's OBB files
880 * @hide
881 */
Andrei Onea24ec3212019-03-15 17:35:05 +0000882 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700883 public static File[] buildExternalStorageAppObbDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700884 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000885 return sCurrentUser.buildExternalStorageAppObbDirs(packageName);
Dianne Hackborn805fd7e2011-01-16 18:30:29 -0800886 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800887
Dianne Hackborn805fd7e2011-01-16 18:30:29 -0800888 /**
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800889 * Generates the path to an application's files.
890 * @hide
891 */
Andrei Onea24ec3212019-03-15 17:35:05 +0000892 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700893 public static File[] buildExternalStorageAppFilesDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700894 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000895 return sCurrentUser.buildExternalStorageAppFilesDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800896 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700897
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800898 /**
899 * Generates the path to an application's cache.
900 * @hide
901 */
Andrei Onea24ec3212019-03-15 17:35:05 +0000902 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700903 public static File[] buildExternalStorageAppCacheDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700904 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000905 return sCurrentUser.buildExternalStorageAppCacheDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800906 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800907
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800908 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700909 * Return the download/cache content directory.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800910 */
911 public static File getDownloadCacheDirectory() {
Jeff Sharkey15447792015-11-05 16:18:51 -0800912 return DIR_DOWNLOAD_CACHE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800913 }
914
915 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700916 * Unknown storage state, such as when a path isn't backed by known storage
917 * media.
918 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800919 * @see #getExternalStorageState(File)
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700920 */
921 public static final String MEDIA_UNKNOWN = "unknown";
922
923 /**
924 * Storage state if the media is not present.
925 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800926 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800927 */
928 public static final String MEDIA_REMOVED = "removed";
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700929
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800930 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700931 * Storage state if the media is present but not mounted.
932 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800933 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800934 */
935 public static final String MEDIA_UNMOUNTED = "unmounted";
936
937 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700938 * Storage state if the media is present and being disk-checked.
939 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800940 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800941 */
942 public static final String MEDIA_CHECKING = "checking";
943
944 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700945 * Storage state if the media is present but is blank or is using an
946 * unsupported filesystem.
947 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800948 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800949 */
950 public static final String MEDIA_NOFS = "nofs";
951
952 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700953 * Storage state if the media is present and mounted at its mount point with
954 * read/write access.
955 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800956 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800957 */
958 public static final String MEDIA_MOUNTED = "mounted";
959
960 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700961 * Storage state if the media is present and mounted at its mount point with
962 * read-only access.
963 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800964 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800965 */
966 public static final String MEDIA_MOUNTED_READ_ONLY = "mounted_ro";
967
968 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700969 * Storage state if the media is present not mounted, and shared via USB
970 * mass storage.
971 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800972 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800973 */
974 public static final String MEDIA_SHARED = "shared";
975
976 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700977 * Storage state if the media was removed before it was unmounted.
978 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800979 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800980 */
981 public static final String MEDIA_BAD_REMOVAL = "bad_removal";
982
983 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700984 * Storage state if the media is present but cannot be mounted. Typically
985 * this happens if the file system on the media is corrupted.
986 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800987 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800988 */
989 public static final String MEDIA_UNMOUNTABLE = "unmountable";
990
991 /**
Jeff Sharkey48877892015-03-18 11:27:19 -0700992 * Storage state if the media is in the process of being ejected.
993 *
994 * @see #getExternalStorageState(File)
995 */
996 public static final String MEDIA_EJECTING = "ejecting";
997
998 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700999 * Returns the current state of the primary shared/external storage media.
Felipe Lemec7b1f892016-01-15 15:02:31 -08001000 *
Jeff Sharkey8c165792012-10-22 14:08:29 -07001001 * @see #getExternalStorageDirectory()
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001002 * @return one of {@link #MEDIA_UNKNOWN}, {@link #MEDIA_REMOVED},
1003 * {@link #MEDIA_UNMOUNTED}, {@link #MEDIA_CHECKING},
1004 * {@link #MEDIA_NOFS}, {@link #MEDIA_MOUNTED},
1005 * {@link #MEDIA_MOUNTED_READ_ONLY}, {@link #MEDIA_SHARED},
1006 * {@link #MEDIA_BAD_REMOVAL}, or {@link #MEDIA_UNMOUNTABLE}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001007 */
1008 public static String getExternalStorageState() {
Andreas Gamped281b422016-07-08 03:50:27 +00001009 final File externalDir = sCurrentUser.getExternalDirs()[0];
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001010 return getExternalStorageState(externalDir);
1011 }
1012
1013 /**
1014 * @deprecated use {@link #getExternalStorageState(File)}
1015 */
1016 @Deprecated
1017 public static String getStorageState(File path) {
1018 return getExternalStorageState(path);
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001019 }
1020
1021 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -07001022 * Returns the current state of the shared/external storage media at the
1023 * given path.
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001024 *
1025 * @return one of {@link #MEDIA_UNKNOWN}, {@link #MEDIA_REMOVED},
1026 * {@link #MEDIA_UNMOUNTED}, {@link #MEDIA_CHECKING},
1027 * {@link #MEDIA_NOFS}, {@link #MEDIA_MOUNTED},
1028 * {@link #MEDIA_MOUNTED_READ_ONLY}, {@link #MEDIA_SHARED},
1029 * {@link #MEDIA_BAD_REMOVAL}, or {@link #MEDIA_UNMOUNTABLE}.
1030 */
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001031 public static String getExternalStorageState(File path) {
Jeff Sharkey48877892015-03-18 11:27:19 -07001032 final StorageVolume volume = StorageManager.getStorageVolume(path, UserHandle.myUserId());
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001033 if (volume != null) {
Jeff Sharkey48877892015-03-18 11:27:19 -07001034 return volume.getState();
1035 } else {
1036 return MEDIA_UNKNOWN;
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001037 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001038 }
1039
Dianne Hackborn407f6252010-10-04 11:31:17 -07001040 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -07001041 * Returns whether the primary shared/external storage media is physically
1042 * removable.
Dianne Hackborn407f6252010-10-04 11:31:17 -07001043 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001044 * @return true if the storage device can be removed (such as an SD card),
1045 * or false if the storage device is built in and cannot be
1046 * physically removed.
Dianne Hackborn407f6252010-10-04 11:31:17 -07001047 */
1048 public static boolean isExternalStorageRemovable() {
Andreas Gamped281b422016-07-08 03:50:27 +00001049 final File externalDir = sCurrentUser.getExternalDirs()[0];
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001050 return isExternalStorageRemovable(externalDir);
Dianne Hackborn407f6252010-10-04 11:31:17 -07001051 }
1052
Kenny Roote1ff2142010-10-12 11:20:01 -07001053 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -07001054 * Returns whether the shared/external storage media at the given path is
1055 * physically removable.
Andy Stadler50c294f2011-03-07 19:13:42 -08001056 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001057 * @return true if the storage device can be removed (such as an SD card),
1058 * or false if the storage device is built in and cannot be
1059 * physically removed.
1060 * @throws IllegalArgumentException if the path is not a valid storage
1061 * device.
1062 */
1063 public static boolean isExternalStorageRemovable(File path) {
Jeff Sharkey48877892015-03-18 11:27:19 -07001064 final StorageVolume volume = StorageManager.getStorageVolume(path, UserHandle.myUserId());
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001065 if (volume != null) {
1066 return volume.isRemovable();
1067 } else {
1068 throw new IllegalArgumentException("Failed to find storage device at " + path);
1069 }
1070 }
1071
1072 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -07001073 * Returns whether the primary shared/external storage media is emulated.
1074 * <p>
1075 * The contents of emulated storage devices are backed by a private user
1076 * data partition, which means there is little benefit to apps storing data
1077 * here instead of the private directories returned by
1078 * {@link Context#getFilesDir()}, etc.
1079 * <p>
1080 * This returns true when emulated storage is backed by either internal
1081 * storage or an adopted storage device.
Andy Stadler50c294f2011-03-07 19:13:42 -08001082 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001083 * @see DevicePolicyManager#setStorageEncryption(android.content.ComponentName,
1084 * boolean)
Kenny Roote1ff2142010-10-12 11:20:01 -07001085 */
1086 public static boolean isExternalStorageEmulated() {
Andreas Gamped281b422016-07-08 03:50:27 +00001087 final File externalDir = sCurrentUser.getExternalDirs()[0];
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001088 return isExternalStorageEmulated(externalDir);
1089 }
1090
1091 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -07001092 * Returns whether the shared/external storage media at the given path is
1093 * emulated.
1094 * <p>
1095 * The contents of emulated storage devices are backed by a private user
1096 * data partition, which means there is little benefit to apps storing data
1097 * here instead of the private directories returned by
1098 * {@link Context#getFilesDir()}, etc.
1099 * <p>
1100 * This returns true when emulated storage is backed by either internal
1101 * storage or an adopted storage device.
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001102 *
1103 * @throws IllegalArgumentException if the path is not a valid storage
1104 * device.
1105 */
1106 public static boolean isExternalStorageEmulated(File path) {
Jeff Sharkey48877892015-03-18 11:27:19 -07001107 final StorageVolume volume = StorageManager.getStorageVolume(path, UserHandle.myUserId());
Jeff Sharkey4ca728c2014-01-10 16:27:19 -08001108 if (volume != null) {
1109 return volume.isEmulated();
1110 } else {
1111 throw new IllegalArgumentException("Failed to find storage device at " + path);
1112 }
Kenny Roote1ff2142010-10-12 11:20:01 -07001113 }
1114
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001115 static File getDirectory(String variableName, String defaultPath) {
1116 String path = System.getenv(variableName);
1117 return path == null ? new File(defaultPath) : new File(path);
1118 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -07001119
Jeff Sharkey48749fc2013-04-19 13:25:04 -07001120 /** {@hide} */
1121 public static void setUserRequired(boolean userRequired) {
Andreas Gamped281b422016-07-08 03:50:27 +00001122 sUserRequired = userRequired;
Jeff Sharkey48749fc2013-04-19 13:25:04 -07001123 }
1124
1125 private static void throwIfUserRequired() {
Andreas Gamped281b422016-07-08 03:50:27 +00001126 if (sUserRequired) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -07001127 Log.wtf(TAG, "Path requests must specify a user by using UserEnvironment",
1128 new Throwable());
Jeff Sharkeyb049e212012-09-07 23:16:01 -07001129 }
1130 }
1131
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001132 /**
1133 * Append path segments to each given base path, returning result.
1134 *
1135 * @hide
1136 */
Andrei Onea24ec3212019-03-15 17:35:05 +00001137 @UnsupportedAppUsage
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001138 public static File[] buildPaths(File[] base, String... segments) {
1139 File[] result = new File[base.length];
1140 for (int i = 0; i < base.length; i++) {
1141 result[i] = buildPath(base[i], segments);
1142 }
1143 return result;
1144 }
1145
1146 /**
1147 * Append path segments to given base path, returning result.
1148 *
1149 * @hide
1150 */
Philip P. Moltmannf80809f2018-04-04 11:20:44 -07001151 @TestApi
Jeff Sharkey1abdb712013-08-11 16:28:14 -07001152 public static File buildPath(File base, String... segments) {
Jeff Sharkeyb049e212012-09-07 23:16:01 -07001153 File cur = base;
1154 for (String segment : segments) {
1155 if (cur == null) {
1156 cur = new File(segment);
1157 } else {
1158 cur = new File(cur, segment);
1159 }
1160 }
1161 return cur;
1162 }
Jeff Sharkey63d0a062013-03-01 16:12:55 -08001163
1164 /**
1165 * If the given path exists on emulated external storage, return the
1166 * translated backing path hosted on internal storage. This bypasses any
1167 * emulation later, improving performance. This is <em>only</em> suitable
1168 * for read-only access.
1169 * <p>
1170 * Returns original path if given path doesn't meet these criteria. Callers
1171 * must hold {@link android.Manifest.permission#WRITE_MEDIA_STORAGE}
1172 * permission.
1173 *
Jeff Sharkey70eb34a2018-09-13 11:57:03 -06001174 * @deprecated disabled now that FUSE has been replaced by sdcardfs
Jeff Sharkey63d0a062013-03-01 16:12:55 -08001175 * @hide
1176 */
Andrei Onea24ec3212019-03-15 17:35:05 +00001177 @UnsupportedAppUsage
Jeff Sharkey70eb34a2018-09-13 11:57:03 -06001178 @Deprecated
Jeff Sharkey63d0a062013-03-01 16:12:55 -08001179 public static File maybeTranslateEmulatedPathToInternal(File path) {
Jeff Sharkey50a05452015-04-29 11:24:52 -07001180 return StorageManager.maybeTranslateEmulatedPathToInternal(path);
Jeff Sharkey63d0a062013-03-01 16:12:55 -08001181 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001182}