blob: 4616af8f7768963dc31bbc9421e6ae5c2e7a5e70 [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 Sharkey4ca728c2014-01-10 16:27:19 -080019import android.app.admin.DevicePolicyManager;
Jeff Sharkey1abdb712013-08-11 16:28:14 -070020import android.content.Context;
Jeff Sharkey48877892015-03-18 11:27:19 -070021import android.os.storage.StorageManager;
Mike Lockwood2f6a3882011-05-09 19:08:06 -070022import android.os.storage.StorageVolume;
Jeff Sharkeybd0e9e42015-04-30 16:04:50 -070023import android.text.TextUtils;
Kenny Rootb2278dc2011-01-18 13:03:28 -080024import android.util.Log;
San Mehat7fd0fee2009-12-17 07:12:23 -080025
Gilles Debunneee1d6302011-05-13 10:09:32 -070026import java.io.File;
27
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028/**
29 * Provides access to environment variables.
30 */
31public class Environment {
Kenny Rootb2278dc2011-01-18 13:03:28 -080032 private static final String TAG = "Environment";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033
Jeff Sharkeyb049e212012-09-07 23:16:01 -070034 private static final String ENV_EXTERNAL_STORAGE = "EXTERNAL_STORAGE";
Jeff Sharkey63d0a062013-03-01 16:12:55 -080035 private static final String ENV_ANDROID_ROOT = "ANDROID_ROOT";
Jeff Sharkey48877892015-03-18 11:27:19 -070036 private static final String ENV_ANDROID_DATA = "ANDROID_DATA";
Jeff Sharkeycf3f0a12016-03-17 19:57:58 -060037 private static final String ENV_ANDROID_EXPAND = "ANDROID_EXPAND";
Jeff Sharkey48877892015-03-18 11:27:19 -070038 private static final String ENV_ANDROID_STORAGE = "ANDROID_STORAGE";
Jeff Sharkey15447792015-11-05 16:18:51 -080039 private static final String ENV_DOWNLOAD_CACHE = "DOWNLOAD_CACHE";
Jeff Sharkey1be762c2014-03-06 09:56:23 -080040 private static final String ENV_OEM_ROOT = "OEM_ROOT";
Hung-ying Tyanbdc9d582015-11-20 11:53:39 +080041 private static final String ENV_ODM_ROOT = "ODM_ROOT";
Christopher Tate740888f2014-04-18 12:24:57 -070042 private static final String ENV_VENDOR_ROOT = "VENDOR_ROOT";
Jeff Sharkeyb049e212012-09-07 23:16:01 -070043
Jeff Sharkeydfa45302012-09-12 16:25:22 -070044 /** {@hide} */
Jeff Sharkey1abdb712013-08-11 16:28:14 -070045 public static final String DIR_ANDROID = "Android";
46 private static final String DIR_DATA = "data";
47 private static final String DIR_MEDIA = "media";
48 private static final String DIR_OBB = "obb";
49 private static final String DIR_FILES = "files";
50 private static final String DIR_CACHE = "cache";
51
52 /** {@hide} */
53 @Deprecated
54 public static final String DIRECTORY_ANDROID = DIR_ANDROID;
Jeff Sharkeydfa45302012-09-12 16:25:22 -070055
Jeff Sharkey63d0a062013-03-01 16:12:55 -080056 private static final File DIR_ANDROID_ROOT = getDirectory(ENV_ANDROID_ROOT, "/system");
Jeff Sharkey48877892015-03-18 11:27:19 -070057 private static final File DIR_ANDROID_DATA = getDirectory(ENV_ANDROID_DATA, "/data");
Jeff Sharkeycf3f0a12016-03-17 19:57:58 -060058 private static final File DIR_ANDROID_EXPAND = getDirectory(ENV_ANDROID_EXPAND, "/mnt/expand");
Jeff Sharkey48877892015-03-18 11:27:19 -070059 private static final File DIR_ANDROID_STORAGE = getDirectory(ENV_ANDROID_STORAGE, "/storage");
Jeff Sharkey15447792015-11-05 16:18:51 -080060 private static final File DIR_DOWNLOAD_CACHE = getDirectory(ENV_DOWNLOAD_CACHE, "/cache");
Jeff Sharkey1be762c2014-03-06 09:56:23 -080061 private static final File DIR_OEM_ROOT = getDirectory(ENV_OEM_ROOT, "/oem");
Hung-ying Tyanbdc9d582015-11-20 11:53:39 +080062 private static final File DIR_ODM_ROOT = getDirectory(ENV_ODM_ROOT, "/odm");
Christopher Tate740888f2014-04-18 12:24:57 -070063 private static final File DIR_VENDOR_ROOT = getDirectory(ENV_VENDOR_ROOT, "/vendor");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064
Andreas Gamped281b422016-07-08 03:50:27 +000065 private static UserEnvironment sCurrentUser;
66 private static boolean sUserRequired;
Kenny Roote1ff2142010-10-12 11:20:01 -070067
Andreas Gamped281b422016-07-08 03:50:27 +000068 static {
69 initForCurrentUser();
Jeff Sharkeyb049e212012-09-07 23:16:01 -070070 }
71
72 /** {@hide} */
Andreas Gamped281b422016-07-08 03:50:27 +000073 public static void initForCurrentUser() {
74 final int userId = UserHandle.myUserId();
75 sCurrentUser = new UserEnvironment(userId);
Jeff Sharkeyb049e212012-09-07 23:16:01 -070076 }
77
78 /** {@hide} */
79 public static class UserEnvironment {
Jeff Sharkey48877892015-03-18 11:27:19 -070080 private final int mUserId;
Jeff Sharkeyb049e212012-09-07 23:16:01 -070081
82 public UserEnvironment(int userId) {
Jeff Sharkey48877892015-03-18 11:27:19 -070083 mUserId = userId;
84 }
Jeff Sharkey44cbdec2013-10-07 16:49:47 -070085
Jeff Sharkey48877892015-03-18 11:27:19 -070086 public File[] getExternalDirs() {
Jeff Sharkey46349872015-07-28 10:49:47 -070087 final StorageVolume[] volumes = StorageManager.getVolumeList(mUserId,
88 StorageManager.FLAG_FOR_WRITE);
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -070089 final File[] files = new File[volumes.length];
Jeff Sharkey48877892015-03-18 11:27:19 -070090 for (int i = 0; i < volumes.length; i++) {
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -070091 files[i] = volumes[i].getPathFile();
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -070092 }
Jeff Sharkey1b8ef7e2015-04-03 17:14:45 -070093 return files;
Jeff Sharkeyb049e212012-09-07 23:16:01 -070094 }
95
Jeff Sharkey1abdb712013-08-11 16:28:14 -070096 @Deprecated
Jeff Sharkeyb049e212012-09-07 23:16:01 -070097 public File getExternalStorageDirectory() {
Jeff Sharkey48877892015-03-18 11:27:19 -070098 return getExternalDirs()[0];
Jeff Sharkeyb049e212012-09-07 23:16:01 -070099 }
100
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700101 @Deprecated
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700102 public File getExternalStoragePublicDirectory(String type) {
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700103 return buildExternalStoragePublicDirs(type)[0];
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700104 }
105
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700106 public File[] buildExternalStoragePublicDirs(String type) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700107 return buildPaths(getExternalDirs(), type);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700108 }
109
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700110 public File[] buildExternalStorageAndroidDataDirs() {
Jeff Sharkey48877892015-03-18 11:27:19 -0700111 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_DATA);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700112 }
113
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700114 public File[] buildExternalStorageAndroidObbDirs() {
Jeff Sharkey48877892015-03-18 11:27:19 -0700115 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_OBB);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700116 }
117
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700118 public File[] buildExternalStorageAppDataDirs(String packageName) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700119 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_DATA, packageName);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700120 }
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -0700121
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700122 public File[] buildExternalStorageAppMediaDirs(String packageName) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700123 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_MEDIA, packageName);
Jeff Sharkey2ee3c1e2014-05-30 15:38:35 -0700124 }
125
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700126 public File[] buildExternalStorageAppObbDirs(String packageName) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700127 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_OBB, packageName);
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700128 }
129
130 public File[] buildExternalStorageAppFilesDirs(String packageName) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700131 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_DATA, packageName, DIR_FILES);
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700132 }
133
134 public File[] buildExternalStorageAppCacheDirs(String packageName) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700135 return buildPaths(getExternalDirs(), DIR_ANDROID, DIR_DATA, packageName, DIR_CACHE);
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -0700136 }
Mike Lockwood2f6a3882011-05-09 19:08:06 -0700137 }
San Mehat7fd0fee2009-12-17 07:12:23 -0800138
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139 /**
Jeff Sharkey1be762c2014-03-06 09:56:23 -0800140 * Return root of the "system" partition holding the core Android OS.
141 * Always present and mounted read-only.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800142 */
143 public static File getRootDirectory() {
Jeff Sharkey63d0a062013-03-01 16:12:55 -0800144 return DIR_ANDROID_ROOT;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145 }
146
Jeff Sharkey48877892015-03-18 11:27:19 -0700147 /** {@hide} */
148 public static File getStorageDirectory() {
149 return DIR_ANDROID_STORAGE;
150 }
151
Jason parksa3cdaa52011-01-13 14:15:43 -0600152 /**
Jeff Sharkey1be762c2014-03-06 09:56:23 -0800153 * Return root directory of the "oem" partition holding OEM customizations,
154 * if any. If present, the partition is mounted read-only.
155 *
156 * @hide
157 */
158 public static File getOemDirectory() {
159 return DIR_OEM_ROOT;
160 }
161
162 /**
Hung-ying Tyanbdc9d582015-11-20 11:53:39 +0800163 * Return root directory of the "odm" partition holding ODM customizations,
164 * if any. If present, the partition is mounted read-only.
165 *
166 * @hide
167 */
168 public static File getOdmDirectory() {
169 return DIR_ODM_ROOT;
170 }
171
172 /**
Christopher Tate740888f2014-04-18 12:24:57 -0700173 * Return root directory of the "vendor" partition that holds vendor-provided
174 * software that should persist across simple reflashing of the "system" partition.
175 * @hide
176 */
177 public static File getVendorDirectory() {
178 return DIR_VENDOR_ROOT;
179 }
180
Jason parksa3cdaa52011-01-13 14:15:43 -0600181 /**
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700182 * Return the system directory for a user. This is for use by system
183 * services to store files relating to the user. This directory will be
184 * automatically deleted when the user is removed.
Amith Yamasani61f57372012-08-31 12:12:28 -0700185 *
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700186 * @deprecated This directory is valid and still exists, but callers should
187 * <em>strongly</em> consider switching to
188 * {@link #getDataSystemCeDirectory(int)} which is protected
189 * with user credentials or
190 * {@link #getDataSystemDeDirectory(int)} which supports fast
191 * user wipe.
Amith Yamasani61f57372012-08-31 12:12:28 -0700192 * @hide
193 */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700194 @Deprecated
Amith Yamasani61f57372012-08-31 12:12:28 -0700195 public static File getUserSystemDirectory(int userId) {
Jeff Sharkey15447792015-11-05 16:18:51 -0800196 return new File(new File(getDataSystemDirectory(), "users"), Integer.toString(userId));
Amith Yamasani61f57372012-08-31 12:12:28 -0700197 }
198
199 /**
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700200 * Returns the config directory for a user. This is for use by system
201 * services to store files relating to the user which should be readable by
202 * any app running as that user.
Robin Lee69591332014-04-28 16:03:22 +0100203 *
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700204 * @deprecated This directory is valid and still exists, but callers should
205 * <em>strongly</em> consider switching to
206 * {@link #getDataMiscCeDirectory(int)} which is protected with
207 * user credentials or {@link #getDataMiscDeDirectory(int)}
208 * which supports fast user wipe.
Robin Lee69591332014-04-28 16:03:22 +0100209 * @hide
210 */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700211 @Deprecated
Robin Lee69591332014-04-28 16:03:22 +0100212 public static File getUserConfigDirectory(int userId) {
213 return new File(new File(new File(
214 getDataDirectory(), "misc"), "user"), Integer.toString(userId));
215 }
216
217 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700218 * Return the user data directory.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800219 */
220 public static File getDataDirectory() {
Jeff Sharkey15447792015-11-05 16:18:51 -0800221 return DIR_ANDROID_DATA;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800222 }
223
Jeff Sharkeybd0e9e42015-04-30 16:04:50 -0700224 /** {@hide} */
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700225 public static File getDataDirectory(String volumeUuid) {
Jeff Sharkeybd0e9e42015-04-30 16:04:50 -0700226 if (TextUtils.isEmpty(volumeUuid)) {
Jeff Sharkey15447792015-11-05 16:18:51 -0800227 return DIR_ANDROID_DATA;
Jeff Sharkeybd0e9e42015-04-30 16:04:50 -0700228 } else {
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700229 return new File("/mnt/expand/" + volumeUuid);
Jeff Sharkeybd0e9e42015-04-30 16:04:50 -0700230 }
231 }
232
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700233 /** {@hide} */
Jeff Sharkeycf3f0a12016-03-17 19:57:58 -0600234 public static File getExpandDirectory() {
235 return DIR_ANDROID_EXPAND;
236 }
237
238 /** {@hide} */
Jeff Sharkey15447792015-11-05 16:18:51 -0800239 public static File getDataSystemDirectory() {
240 return new File(getDataDirectory(), "system");
241 }
242
Amith Yamasanid04aaa32016-06-13 12:09:36 -0700243 /**
244 * Returns the base directory for per-user system directory, device encrypted.
245 * {@hide}
246 */
247 public static File getDataSystemDeDirectory() {
248 return buildPath(getDataDirectory(), "system_de");
249 }
250
251 /**
252 * Returns the base directory for per-user system directory, credential encrypted.
253 * {@hide}
254 */
255 public static File getDataSystemCeDirectory() {
256 return buildPath(getDataDirectory(), "system_ce");
257 }
258
Jeff Sharkey15447792015-11-05 16:18:51 -0800259 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700260 public static File getDataSystemCeDirectory(int userId) {
261 return buildPath(getDataDirectory(), "system_ce", String.valueOf(userId));
Jeff Sharkey15447792015-11-05 16:18:51 -0800262 }
263
264 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700265 public static File getDataSystemDeDirectory(int userId) {
266 return buildPath(getDataDirectory(), "system_de", String.valueOf(userId));
267 }
268
269 /** {@hide} */
270 public static File getDataMiscDirectory() {
271 return new File(getDataDirectory(), "misc");
272 }
273
274 /** {@hide} */
275 public static File getDataMiscCeDirectory(int userId) {
276 return buildPath(getDataDirectory(), "misc_ce", String.valueOf(userId));
277 }
278
279 /** {@hide} */
280 public static File getDataMiscDeDirectory(int userId) {
281 return buildPath(getDataDirectory(), "misc_de", String.valueOf(userId));
Jeff Sharkey15447792015-11-05 16:18:51 -0800282 }
283
Calin Juravled479b522016-02-24 16:22:03 +0000284 private static File getDataProfilesDeDirectory(int userId) {
285 return buildPath(getDataDirectory(), "misc", "profiles", "cur", String.valueOf(userId));
286 }
287
288 /** {@hide} */
Calin Juravle0bd77622016-07-12 15:56:41 +0100289 public static File getReferenceProfile(String packageName) {
290 return buildPath(getDataDirectory(), "misc", "profiles", "ref", packageName);
291 }
292
293 /** {@hide} */
Calin Juravled479b522016-02-24 16:22:03 +0000294 public static File getDataProfilesDePackageDirectory(int userId, String packageName) {
295 return buildPath(getDataProfilesDeDirectory(userId), packageName);
296 }
297
298 /** {@hide} */
299 public static File getDataProfilesDeForeignDexDirectory(int userId) {
300 return buildPath(getDataProfilesDeDirectory(userId), "foreign-dex");
301 }
302
Jeff Sharkey15447792015-11-05 16:18:51 -0800303 /** {@hide} */
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700304 public static File getDataAppDirectory(String volumeUuid) {
305 return new File(getDataDirectory(volumeUuid), "app");
306 }
307
308 /** {@hide} */
Todd Kennedy2699f062015-11-20 13:07:17 -0800309 public static File getDataAppEphemeralDirectory(String volumeUuid) {
310 return new File(getDataDirectory(volumeUuid), "app-ephemeral");
311 }
312
313 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700314 public static File getDataUserCeDirectory(String volumeUuid) {
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700315 return new File(getDataDirectory(volumeUuid), "user");
316 }
317
318 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700319 public static File getDataUserCeDirectory(String volumeUuid, int userId) {
320 return new File(getDataUserCeDirectory(volumeUuid), String.valueOf(userId));
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700321 }
322
323 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700324 public static File getDataUserCePackageDirectory(String volumeUuid, int userId,
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700325 String packageName) {
326 // TODO: keep consistent with installd
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700327 return new File(getDataUserCeDirectory(volumeUuid, userId), packageName);
Jeff Sharkey15447792015-11-05 16:18:51 -0800328 }
329
330 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700331 public static File getDataUserDeDirectory(String volumeUuid) {
Jeff Sharkey15447792015-11-05 16:18:51 -0800332 return new File(getDataDirectory(volumeUuid), "user_de");
333 }
334
335 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700336 public static File getDataUserDeDirectory(String volumeUuid, int userId) {
337 return new File(getDataUserDeDirectory(volumeUuid), String.valueOf(userId));
Jeff Sharkey15447792015-11-05 16:18:51 -0800338 }
339
340 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700341 public static File getDataUserDePackageDirectory(String volumeUuid, int userId,
Jeff Sharkey15447792015-11-05 16:18:51 -0800342 String packageName) {
343 // TODO: keep consistent with installd
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700344 return new File(getDataUserDeDirectory(volumeUuid, userId), packageName);
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700345 }
346
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800347 /**
Fyodor Kupolov88257582016-05-24 16:06:56 -0700348 * Return preloads directory.
349 * <p>This directory may contain pre-loaded content such as
350 * {@link #getDataPreloadsDemoDirectory() demo videos} and
351 * {@link #getDataPreloadsAppsDirectory() APK files} .
352 * {@hide}
353 */
354 public static File getDataPreloadsDirectory() {
355 return new File(getDataDirectory(), "preloads");
356 }
357
358 /**
359 * @see #getDataPreloadsDirectory()
360 * {@hide}
361 */
362 public static File getDataPreloadsDemoDirectory() {
363 return new File(getDataPreloadsDirectory(), "demo");
364 }
365
366 /**
367 * @see #getDataPreloadsDirectory()
368 * {@hide}
369 */
370 public static File getDataPreloadsAppsDirectory() {
371 return new File(getDataPreloadsDirectory(), "apps");
372 }
373
374 /**
Fyodor Kupolov19551a82016-08-22 14:46:08 -0700375 * @see #getDataPreloadsDirectory()
376 * {@hide}
377 */
378 public static File getDataPreloadsMediaDirectory() {
379 return new File(getDataPreloadsDirectory(), "media");
380 }
381
382 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700383 * Return the primary shared/external storage directory. This directory may
384 * not currently be accessible if it has been mounted by the user on their
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800385 * computer, has been removed from the device, or some other problem has
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700386 * happened. You can determine its current state with
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800387 * {@link #getExternalStorageState()}.
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700388 * <p>
389 * <em>Note: don't be confused by the word "external" here. This directory
390 * can better be thought as media/shared storage. It is a filesystem that
391 * can hold a relatively large amount of data and that is shared across all
392 * applications (does not enforce permissions). Traditionally this is an SD
393 * card, but it may also be implemented as built-in storage in a device that
394 * is distinct from the protected internal storage and can be mounted as a
395 * filesystem on a computer.</em>
396 * <p>
397 * On devices with multiple users (as described by {@link UserManager}),
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700398 * each user has their own isolated shared storage. Applications only have
399 * access to the shared storage for the user they're running as.
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700400 * <p>
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700401 * In devices with multiple shared/external storage directories, this
402 * directory represents the primary storage that the user will interact
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700403 * with. Access to secondary storage is available through
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700404 * {@link Context#getExternalFilesDirs(String)},
405 * {@link Context#getExternalCacheDirs()}, and
406 * {@link Context#getExternalMediaDirs()}.
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700407 * <p>
408 * Applications should not directly use this top-level directory, in order
409 * to avoid polluting the user's root namespace. Any files that are private
410 * to the application should be placed in a directory returned by
411 * {@link android.content.Context#getExternalFilesDir
Dianne Hackbornacaf0282010-03-30 14:39:35 -0700412 * Context.getExternalFilesDir}, which the system will take care of deleting
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700413 * if the application is uninstalled. Other shared files should be placed in
414 * one of the directories returned by
415 * {@link #getExternalStoragePublicDirectory}.
416 * <p>
417 * Writing to this path requires the
418 * {@link android.Manifest.permission#WRITE_EXTERNAL_STORAGE} permission,
Felipe Leme04a5d402016-02-08 16:44:06 -0800419 * and starting in {@link android.os.Build.VERSION_CODES#KITKAT}, read access requires the
Jeff Sharkey8c165792012-10-22 14:08:29 -0700420 * {@link android.Manifest.permission#READ_EXTERNAL_STORAGE} permission,
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700421 * which is automatically granted if you hold the write permission.
422 * <p>
Chet Haasee8222dd2013-09-05 07:44:18 -0700423 * Starting in {@link android.os.Build.VERSION_CODES#KITKAT}, if your
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700424 * application only needs to store internal data, consider using
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700425 * {@link Context#getExternalFilesDir(String)},
426 * {@link Context#getExternalCacheDir()}, or
427 * {@link Context#getExternalMediaDirs()}, which require no permissions to
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700428 * read or write.
429 * <p>
430 * This path may change between platform versions, so applications should
431 * only persist relative paths.
432 * <p>
433 * Here is an example of typical code to monitor the state of external
434 * storage:
435 * <p>
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700436 * {@sample development/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800437 * monitor_storage}
Dianne Hackborn407f6252010-10-04 11:31:17 -0700438 *
439 * @see #getExternalStorageState()
440 * @see #isExternalStorageRemovable()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800441 */
442 public static File getExternalStorageDirectory() {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700443 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000444 return sCurrentUser.getExternalDirs()[0];
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700445 }
446
447 /** {@hide} */
448 public static File getLegacyExternalStorageDirectory() {
449 return new File(System.getenv(ENV_EXTERNAL_STORAGE));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800450 }
451
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700452 /** {@hide} */
453 public static File getLegacyExternalStorageObbDirectory() {
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700454 return buildPath(getLegacyExternalStorageDirectory(), DIR_ANDROID, DIR_OBB);
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700455 }
456
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800457 /**
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800458 * Standard directory in which to place any audio files that should be
459 * in the regular list of music for the user.
460 * This may be combined with
461 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS},
462 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
463 * of directories to categories a particular audio file as more than one
464 * type.
465 */
466 public static String DIRECTORY_MUSIC = "Music";
Felipe Lemec7b1f892016-01-15 15:02:31 -0800467
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800468 /**
469 * Standard directory in which to place any audio files that should be
470 * in the list of podcasts that the user can select (not as regular
471 * music).
472 * This may be combined with {@link #DIRECTORY_MUSIC},
473 * {@link #DIRECTORY_NOTIFICATIONS},
474 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
475 * of directories to categories a particular audio file as more than one
476 * type.
477 */
478 public static String DIRECTORY_PODCASTS = "Podcasts";
Felipe Lemeb012f912016-01-22 16:49:55 -0800479
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800480 /**
481 * Standard directory in which to place any audio files that should be
482 * in the list of ringtones that the user can select (not as regular
483 * music).
484 * This may be combined with {@link #DIRECTORY_MUSIC},
485 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS}, and
486 * {@link #DIRECTORY_ALARMS} as a series
487 * of directories to categories a particular audio file as more than one
488 * type.
489 */
490 public static String DIRECTORY_RINGTONES = "Ringtones";
Felipe Lemeb012f912016-01-22 16:49:55 -0800491
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800492 /**
493 * Standard directory in which to place any audio files that should be
494 * in the list of alarms that the user can select (not as regular
495 * music).
496 * This may be combined with {@link #DIRECTORY_MUSIC},
497 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS},
498 * and {@link #DIRECTORY_RINGTONES} as a series
499 * of directories to categories a particular audio file as more than one
500 * type.
501 */
502 public static String DIRECTORY_ALARMS = "Alarms";
Felipe Lemeb012f912016-01-22 16:49:55 -0800503
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800504 /**
505 * Standard directory in which to place any audio files that should be
506 * in the list of notifications that the user can select (not as regular
507 * music).
508 * This may be combined with {@link #DIRECTORY_MUSIC},
509 * {@link #DIRECTORY_PODCASTS},
510 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
511 * of directories to categories a particular audio file as more than one
512 * type.
513 */
514 public static String DIRECTORY_NOTIFICATIONS = "Notifications";
Felipe Lemeb012f912016-01-22 16:49:55 -0800515
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800516 /**
517 * Standard directory in which to place pictures that are available to
518 * the user. Note that this is primarily a convention for the top-level
519 * public directory, as the media scanner will find and collect pictures
520 * in any directory.
521 */
522 public static String DIRECTORY_PICTURES = "Pictures";
Felipe Lemeb012f912016-01-22 16:49:55 -0800523
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800524 /**
525 * Standard directory in which to place movies that are available to
526 * the user. Note that this is primarily a convention for the top-level
527 * public directory, as the media scanner will find and collect movies
528 * in any directory.
529 */
530 public static String DIRECTORY_MOVIES = "Movies";
Felipe Lemeb012f912016-01-22 16:49:55 -0800531
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800532 /**
533 * Standard directory in which to place files that have been downloaded by
534 * the user. Note that this is primarily a convention for the top-level
535 * public directory, you are free to download files anywhere in your own
Dianne Hackbornce59fb82010-04-07 17:19:04 -0700536 * private directories. Also note that though the constant here is
537 * named DIRECTORY_DOWNLOADS (plural), the actual file name is non-plural for
538 * backwards compatibility reasons.
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800539 */
Dianne Hackbornce59fb82010-04-07 17:19:04 -0700540 public static String DIRECTORY_DOWNLOADS = "Download";
Felipe Lemeb012f912016-01-22 16:49:55 -0800541
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800542 /**
543 * The traditional location for pictures and videos when mounting the
544 * device as a camera. Note that this is primarily a convention for the
545 * top-level public directory, as this convention makes no sense elsewhere.
546 */
547 public static String DIRECTORY_DCIM = "DCIM";
Jeff Sharkey3e1189b2013-09-12 21:59:06 -0700548
549 /**
550 * Standard directory in which to place documents that have been created by
551 * the user.
552 */
553 public static String DIRECTORY_DOCUMENTS = "Documents";
554
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800555 /**
Felipe Lemec7b1f892016-01-15 15:02:31 -0800556 * List of standard storage directories.
557 * <p>
558 * Each of its values have its own constant:
559 * <ul>
560 * <li>{@link #DIRECTORY_MUSIC}
561 * <li>{@link #DIRECTORY_PODCASTS}
562 * <li>{@link #DIRECTORY_ALARMS}
563 * <li>{@link #DIRECTORY_RINGTONES}
564 * <li>{@link #DIRECTORY_NOTIFICATIONS}
565 * <li>{@link #DIRECTORY_PICTURES}
566 * <li>{@link #DIRECTORY_MOVIES}
567 * <li>{@link #DIRECTORY_DOWNLOADS}
568 * <li>{@link #DIRECTORY_DCIM}
569 * <li>{@link #DIRECTORY_DOCUMENTS}
570 * </ul>
571 * @hide
572 */
Felipe Leme3e166b22016-02-24 10:17:41 -0800573 public static final String[] STANDARD_DIRECTORIES = {
Felipe Lemec7b1f892016-01-15 15:02:31 -0800574 DIRECTORY_MUSIC,
575 DIRECTORY_PODCASTS,
576 DIRECTORY_RINGTONES,
577 DIRECTORY_ALARMS,
578 DIRECTORY_NOTIFICATIONS,
579 DIRECTORY_PICTURES,
580 DIRECTORY_MOVIES,
581 DIRECTORY_DOWNLOADS,
582 DIRECTORY_DCIM,
Steve McKayab3b8932016-02-16 11:37:03 -0800583 DIRECTORY_DOCUMENTS
Felipe Lemec7b1f892016-01-15 15:02:31 -0800584 };
585
586 /**
Felipe Lemeb012f912016-01-22 16:49:55 -0800587 * @hide
588 */
589 public static boolean isStandardDirectory(String dir) {
590 for (String valid : STANDARD_DIRECTORIES) {
591 if (valid.equals(dir)) {
592 return true;
593 }
594 }
595 return false;
596 }
597
598 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700599 * Get a top-level shared/external storage directory for placing files of a
600 * particular type. This is where the user will typically place and manage
601 * their own files, so you should be careful about what you put here to
602 * ensure you don't erase their files or get in the way of their own
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800603 * organization.
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700604 * <p>
605 * On devices with multiple users (as described by {@link UserManager}),
606 * each user has their own isolated shared storage. Applications only have
607 * access to the shared storage for the user they're running as.
608 * </p>
609 * <p>
610 * Here is an example of typical code to manipulate a picture on the public
611 * shared storage:
612 * </p>
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800613 * {@sample development/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java
614 * public_picture}
Felipe Lemec7b1f892016-01-15 15:02:31 -0800615 *
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700616 * @param type The type of storage directory to return. Should be one of
617 * {@link #DIRECTORY_MUSIC}, {@link #DIRECTORY_PODCASTS},
618 * {@link #DIRECTORY_RINGTONES}, {@link #DIRECTORY_ALARMS},
619 * {@link #DIRECTORY_NOTIFICATIONS}, {@link #DIRECTORY_PICTURES},
Felipe Lemec7b1f892016-01-15 15:02:31 -0800620 * {@link #DIRECTORY_MOVIES}, {@link #DIRECTORY_DOWNLOADS},
621 * {@link #DIRECTORY_DCIM}, or {@link #DIRECTORY_DOCUMENTS}. May not be null.
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700622 * @return Returns the File path for the directory. Note that this directory
623 * may not yet exist, so you must make sure it exists before using
624 * it such as with {@link File#mkdirs File.mkdirs()}.
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800625 */
626 public static File getExternalStoragePublicDirectory(String type) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700627 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000628 return sCurrentUser.buildExternalStoragePublicDirs(type)[0];
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800629 }
630
631 /**
632 * Returns the path for android-specific data on the SD card.
633 * @hide
634 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700635 public static File[] buildExternalStorageAndroidDataDirs() {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700636 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000637 return sCurrentUser.buildExternalStorageAndroidDataDirs();
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800638 }
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700639
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800640 /**
641 * Generates the raw path to an application's data
642 * @hide
643 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700644 public static File[] buildExternalStorageAppDataDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700645 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000646 return sCurrentUser.buildExternalStorageAppDataDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800647 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800648
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800649 /**
650 * Generates the raw path to an application's media
651 * @hide
652 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700653 public static File[] buildExternalStorageAppMediaDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700654 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000655 return sCurrentUser.buildExternalStorageAppMediaDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800656 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800657
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800658 /**
Dianne Hackborn805fd7e2011-01-16 18:30:29 -0800659 * Generates the raw path to an application's OBB files
660 * @hide
661 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700662 public static File[] buildExternalStorageAppObbDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700663 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000664 return sCurrentUser.buildExternalStorageAppObbDirs(packageName);
Dianne Hackborn805fd7e2011-01-16 18:30:29 -0800665 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800666
Dianne Hackborn805fd7e2011-01-16 18:30:29 -0800667 /**
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800668 * Generates the path to an application's files.
669 * @hide
670 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700671 public static File[] buildExternalStorageAppFilesDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700672 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000673 return sCurrentUser.buildExternalStorageAppFilesDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800674 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700675
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800676 /**
677 * Generates the path to an application's cache.
678 * @hide
679 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700680 public static File[] buildExternalStorageAppCacheDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700681 throwIfUserRequired();
Andreas Gamped281b422016-07-08 03:50:27 +0000682 return sCurrentUser.buildExternalStorageAppCacheDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800683 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800684
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800685 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700686 * Return the download/cache content directory.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800687 */
688 public static File getDownloadCacheDirectory() {
Jeff Sharkey15447792015-11-05 16:18:51 -0800689 return DIR_DOWNLOAD_CACHE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800690 }
691
692 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700693 * Unknown storage state, such as when a path isn't backed by known storage
694 * media.
695 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800696 * @see #getExternalStorageState(File)
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700697 */
698 public static final String MEDIA_UNKNOWN = "unknown";
699
700 /**
701 * Storage state if the media is not present.
702 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800703 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800704 */
705 public static final String MEDIA_REMOVED = "removed";
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700706
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800707 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700708 * Storage state if the media is present but not mounted.
709 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800710 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800711 */
712 public static final String MEDIA_UNMOUNTED = "unmounted";
713
714 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700715 * Storage state if the media is present and being disk-checked.
716 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800717 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800718 */
719 public static final String MEDIA_CHECKING = "checking";
720
721 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700722 * Storage state if the media is present but is blank or is using an
723 * unsupported filesystem.
724 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800725 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800726 */
727 public static final String MEDIA_NOFS = "nofs";
728
729 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700730 * Storage state if the media is present and mounted at its mount point with
731 * read/write access.
732 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800733 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800734 */
735 public static final String MEDIA_MOUNTED = "mounted";
736
737 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700738 * Storage state if the media is present and mounted at its mount point with
739 * read-only access.
740 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800741 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800742 */
743 public static final String MEDIA_MOUNTED_READ_ONLY = "mounted_ro";
744
745 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700746 * Storage state if the media is present not mounted, and shared via USB
747 * mass storage.
748 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800749 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800750 */
751 public static final String MEDIA_SHARED = "shared";
752
753 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700754 * Storage state if the media was removed before it was unmounted.
755 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800756 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800757 */
758 public static final String MEDIA_BAD_REMOVAL = "bad_removal";
759
760 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700761 * Storage state if the media is present but cannot be mounted. Typically
762 * this happens if the file system on the media is corrupted.
763 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800764 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800765 */
766 public static final String MEDIA_UNMOUNTABLE = "unmountable";
767
768 /**
Jeff Sharkey48877892015-03-18 11:27:19 -0700769 * Storage state if the media is in the process of being ejected.
770 *
771 * @see #getExternalStorageState(File)
772 */
773 public static final String MEDIA_EJECTING = "ejecting";
774
775 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700776 * Returns the current state of the primary shared/external storage media.
Felipe Lemec7b1f892016-01-15 15:02:31 -0800777 *
Jeff Sharkey8c165792012-10-22 14:08:29 -0700778 * @see #getExternalStorageDirectory()
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700779 * @return one of {@link #MEDIA_UNKNOWN}, {@link #MEDIA_REMOVED},
780 * {@link #MEDIA_UNMOUNTED}, {@link #MEDIA_CHECKING},
781 * {@link #MEDIA_NOFS}, {@link #MEDIA_MOUNTED},
782 * {@link #MEDIA_MOUNTED_READ_ONLY}, {@link #MEDIA_SHARED},
783 * {@link #MEDIA_BAD_REMOVAL}, or {@link #MEDIA_UNMOUNTABLE}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800784 */
785 public static String getExternalStorageState() {
Andreas Gamped281b422016-07-08 03:50:27 +0000786 final File externalDir = sCurrentUser.getExternalDirs()[0];
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800787 return getExternalStorageState(externalDir);
788 }
789
790 /**
791 * @deprecated use {@link #getExternalStorageState(File)}
792 */
793 @Deprecated
794 public static String getStorageState(File path) {
795 return getExternalStorageState(path);
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700796 }
797
798 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700799 * Returns the current state of the shared/external storage media at the
800 * given path.
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700801 *
802 * @return one of {@link #MEDIA_UNKNOWN}, {@link #MEDIA_REMOVED},
803 * {@link #MEDIA_UNMOUNTED}, {@link #MEDIA_CHECKING},
804 * {@link #MEDIA_NOFS}, {@link #MEDIA_MOUNTED},
805 * {@link #MEDIA_MOUNTED_READ_ONLY}, {@link #MEDIA_SHARED},
806 * {@link #MEDIA_BAD_REMOVAL}, or {@link #MEDIA_UNMOUNTABLE}.
807 */
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800808 public static String getExternalStorageState(File path) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700809 final StorageVolume volume = StorageManager.getStorageVolume(path, UserHandle.myUserId());
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800810 if (volume != null) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700811 return volume.getState();
812 } else {
813 return MEDIA_UNKNOWN;
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700814 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800815 }
816
Dianne Hackborn407f6252010-10-04 11:31:17 -0700817 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700818 * Returns whether the primary shared/external storage media is physically
819 * removable.
Dianne Hackborn407f6252010-10-04 11:31:17 -0700820 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800821 * @return true if the storage device can be removed (such as an SD card),
822 * or false if the storage device is built in and cannot be
823 * physically removed.
Dianne Hackborn407f6252010-10-04 11:31:17 -0700824 */
825 public static boolean isExternalStorageRemovable() {
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800826 if (isStorageDisabled()) return false;
Andreas Gamped281b422016-07-08 03:50:27 +0000827 final File externalDir = sCurrentUser.getExternalDirs()[0];
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800828 return isExternalStorageRemovable(externalDir);
Dianne Hackborn407f6252010-10-04 11:31:17 -0700829 }
830
Kenny Roote1ff2142010-10-12 11:20:01 -0700831 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700832 * Returns whether the shared/external storage media at the given path is
833 * physically removable.
Andy Stadler50c294f2011-03-07 19:13:42 -0800834 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800835 * @return true if the storage device can be removed (such as an SD card),
836 * or false if the storage device is built in and cannot be
837 * physically removed.
838 * @throws IllegalArgumentException if the path is not a valid storage
839 * device.
840 */
841 public static boolean isExternalStorageRemovable(File path) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700842 final StorageVolume volume = StorageManager.getStorageVolume(path, UserHandle.myUserId());
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800843 if (volume != null) {
844 return volume.isRemovable();
845 } else {
846 throw new IllegalArgumentException("Failed to find storage device at " + path);
847 }
848 }
849
850 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700851 * Returns whether the primary shared/external storage media is emulated.
852 * <p>
853 * The contents of emulated storage devices are backed by a private user
854 * data partition, which means there is little benefit to apps storing data
855 * here instead of the private directories returned by
856 * {@link Context#getFilesDir()}, etc.
857 * <p>
858 * This returns true when emulated storage is backed by either internal
859 * storage or an adopted storage device.
Andy Stadler50c294f2011-03-07 19:13:42 -0800860 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800861 * @see DevicePolicyManager#setStorageEncryption(android.content.ComponentName,
862 * boolean)
Kenny Roote1ff2142010-10-12 11:20:01 -0700863 */
864 public static boolean isExternalStorageEmulated() {
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800865 if (isStorageDisabled()) return false;
Andreas Gamped281b422016-07-08 03:50:27 +0000866 final File externalDir = sCurrentUser.getExternalDirs()[0];
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800867 return isExternalStorageEmulated(externalDir);
868 }
869
870 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700871 * Returns whether the shared/external storage media at the given path is
872 * emulated.
873 * <p>
874 * The contents of emulated storage devices are backed by a private user
875 * data partition, which means there is little benefit to apps storing data
876 * here instead of the private directories returned by
877 * {@link Context#getFilesDir()}, etc.
878 * <p>
879 * This returns true when emulated storage is backed by either internal
880 * storage or an adopted storage device.
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800881 *
882 * @throws IllegalArgumentException if the path is not a valid storage
883 * device.
884 */
885 public static boolean isExternalStorageEmulated(File path) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700886 final StorageVolume volume = StorageManager.getStorageVolume(path, UserHandle.myUserId());
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800887 if (volume != null) {
888 return volume.isEmulated();
889 } else {
890 throw new IllegalArgumentException("Failed to find storage device at " + path);
891 }
Kenny Roote1ff2142010-10-12 11:20:01 -0700892 }
893
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800894 static File getDirectory(String variableName, String defaultPath) {
895 String path = System.getenv(variableName);
896 return path == null ? new File(defaultPath) : new File(path);
897 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700898
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700899 /** {@hide} */
900 public static void setUserRequired(boolean userRequired) {
Andreas Gamped281b422016-07-08 03:50:27 +0000901 sUserRequired = userRequired;
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700902 }
903
904 private static void throwIfUserRequired() {
Andreas Gamped281b422016-07-08 03:50:27 +0000905 if (sUserRequired) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700906 Log.wtf(TAG, "Path requests must specify a user by using UserEnvironment",
907 new Throwable());
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700908 }
909 }
910
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700911 /**
912 * Append path segments to each given base path, returning result.
913 *
914 * @hide
915 */
916 public static File[] buildPaths(File[] base, String... segments) {
917 File[] result = new File[base.length];
918 for (int i = 0; i < base.length; i++) {
919 result[i] = buildPath(base[i], segments);
920 }
921 return result;
922 }
923
924 /**
925 * Append path segments to given base path, returning result.
926 *
927 * @hide
928 */
929 public static File buildPath(File base, String... segments) {
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700930 File cur = base;
931 for (String segment : segments) {
932 if (cur == null) {
933 cur = new File(segment);
934 } else {
935 cur = new File(cur, segment);
936 }
937 }
938 return cur;
939 }
Jeff Sharkey63d0a062013-03-01 16:12:55 -0800940
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800941 private static boolean isStorageDisabled() {
942 return SystemProperties.getBoolean("config.disable_storage", false);
943 }
944
Jeff Sharkey63d0a062013-03-01 16:12:55 -0800945 /**
946 * If the given path exists on emulated external storage, return the
947 * translated backing path hosted on internal storage. This bypasses any
948 * emulation later, improving performance. This is <em>only</em> suitable
949 * for read-only access.
950 * <p>
951 * Returns original path if given path doesn't meet these criteria. Callers
952 * must hold {@link android.Manifest.permission#WRITE_MEDIA_STORAGE}
953 * permission.
954 *
955 * @hide
956 */
957 public static File maybeTranslateEmulatedPathToInternal(File path) {
Jeff Sharkey50a05452015-04-29 11:24:52 -0700958 return StorageManager.maybeTranslateEmulatedPathToInternal(path);
Jeff Sharkey63d0a062013-03-01 16:12:55 -0800959 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800960}