blob: 6af0678218083cb8fa0578fe8117c54f6749f755 [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
Jeff Sharkeyb049e212012-09-07 23:16:01 -070065 private static UserEnvironment sCurrentUser;
Jeff Sharkey48749fc2013-04-19 13:25:04 -070066 private static boolean sUserRequired;
Kenny Roote1ff2142010-10-12 11:20:01 -070067
Jeff Sharkeyb049e212012-09-07 23:16:01 -070068 static {
69 initForCurrentUser();
70 }
71
72 /** {@hide} */
73 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
243 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700244 public static File getDataSystemCeDirectory(int userId) {
245 return buildPath(getDataDirectory(), "system_ce", String.valueOf(userId));
Jeff Sharkey15447792015-11-05 16:18:51 -0800246 }
247
248 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700249 public static File getDataSystemDeDirectory(int userId) {
250 return buildPath(getDataDirectory(), "system_de", String.valueOf(userId));
251 }
252
253 /** {@hide} */
254 public static File getDataMiscDirectory() {
255 return new File(getDataDirectory(), "misc");
256 }
257
258 /** {@hide} */
259 public static File getDataMiscCeDirectory(int userId) {
260 return buildPath(getDataDirectory(), "misc_ce", String.valueOf(userId));
261 }
262
263 /** {@hide} */
264 public static File getDataMiscDeDirectory(int userId) {
265 return buildPath(getDataDirectory(), "misc_de", String.valueOf(userId));
Jeff Sharkey15447792015-11-05 16:18:51 -0800266 }
267
Calin Juravled479b522016-02-24 16:22:03 +0000268 private static File getDataProfilesDeDirectory(int userId) {
269 return buildPath(getDataDirectory(), "misc", "profiles", "cur", String.valueOf(userId));
270 }
271
272 /** {@hide} */
273 public static File getDataProfilesDePackageDirectory(int userId, String packageName) {
274 return buildPath(getDataProfilesDeDirectory(userId), packageName);
275 }
276
277 /** {@hide} */
278 public static File getDataProfilesDeForeignDexDirectory(int userId) {
279 return buildPath(getDataProfilesDeDirectory(userId), "foreign-dex");
280 }
281
Jeff Sharkey15447792015-11-05 16:18:51 -0800282 /** {@hide} */
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700283 public static File getDataAppDirectory(String volumeUuid) {
284 return new File(getDataDirectory(volumeUuid), "app");
285 }
286
287 /** {@hide} */
Todd Kennedy2699f062015-11-20 13:07:17 -0800288 public static File getDataAppEphemeralDirectory(String volumeUuid) {
289 return new File(getDataDirectory(volumeUuid), "app-ephemeral");
290 }
291
292 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700293 public static File getDataUserCeDirectory(String volumeUuid) {
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700294 return new File(getDataDirectory(volumeUuid), "user");
295 }
296
297 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700298 public static File getDataUserCeDirectory(String volumeUuid, int userId) {
299 return new File(getDataUserCeDirectory(volumeUuid), String.valueOf(userId));
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700300 }
301
302 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700303 public static File getDataUserCePackageDirectory(String volumeUuid, int userId,
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700304 String packageName) {
305 // TODO: keep consistent with installd
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700306 return new File(getDataUserCeDirectory(volumeUuid, userId), packageName);
Jeff Sharkey15447792015-11-05 16:18:51 -0800307 }
308
309 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700310 public static File getDataUserDeDirectory(String volumeUuid) {
Jeff Sharkey15447792015-11-05 16:18:51 -0800311 return new File(getDataDirectory(volumeUuid), "user_de");
312 }
313
314 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700315 public static File getDataUserDeDirectory(String volumeUuid, int userId) {
316 return new File(getDataUserDeDirectory(volumeUuid), String.valueOf(userId));
Jeff Sharkey15447792015-11-05 16:18:51 -0800317 }
318
319 /** {@hide} */
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700320 public static File getDataUserDePackageDirectory(String volumeUuid, int userId,
Jeff Sharkey15447792015-11-05 16:18:51 -0800321 String packageName) {
322 // TODO: keep consistent with installd
Jeff Sharkey8212ae02016-02-10 14:46:43 -0700323 return new File(getDataUserDeDirectory(volumeUuid, userId), packageName);
Jeff Sharkey6dce4962015-07-03 18:08:41 -0700324 }
325
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800326 /**
Fyodor Kupolov88257582016-05-24 16:06:56 -0700327 * Return preloads directory.
328 * <p>This directory may contain pre-loaded content such as
329 * {@link #getDataPreloadsDemoDirectory() demo videos} and
330 * {@link #getDataPreloadsAppsDirectory() APK files} .
331 * {@hide}
332 */
333 public static File getDataPreloadsDirectory() {
334 return new File(getDataDirectory(), "preloads");
335 }
336
337 /**
338 * @see #getDataPreloadsDirectory()
339 * {@hide}
340 */
341 public static File getDataPreloadsDemoDirectory() {
342 return new File(getDataPreloadsDirectory(), "demo");
343 }
344
345 /**
346 * @see #getDataPreloadsDirectory()
347 * {@hide}
348 */
349 public static File getDataPreloadsAppsDirectory() {
350 return new File(getDataPreloadsDirectory(), "apps");
351 }
352
353 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700354 * Return the primary shared/external storage directory. This directory may
355 * not currently be accessible if it has been mounted by the user on their
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800356 * computer, has been removed from the device, or some other problem has
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700357 * happened. You can determine its current state with
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800358 * {@link #getExternalStorageState()}.
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700359 * <p>
360 * <em>Note: don't be confused by the word "external" here. This directory
361 * can better be thought as media/shared storage. It is a filesystem that
362 * can hold a relatively large amount of data and that is shared across all
363 * applications (does not enforce permissions). Traditionally this is an SD
364 * card, but it may also be implemented as built-in storage in a device that
365 * is distinct from the protected internal storage and can be mounted as a
366 * filesystem on a computer.</em>
367 * <p>
368 * On devices with multiple users (as described by {@link UserManager}),
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700369 * each user has their own isolated shared storage. Applications only have
370 * access to the shared storage for the user they're running as.
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700371 * <p>
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700372 * In devices with multiple shared/external storage directories, this
373 * directory represents the primary storage that the user will interact
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700374 * with. Access to secondary storage is available through
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700375 * {@link Context#getExternalFilesDirs(String)},
376 * {@link Context#getExternalCacheDirs()}, and
377 * {@link Context#getExternalMediaDirs()}.
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700378 * <p>
379 * Applications should not directly use this top-level directory, in order
380 * to avoid polluting the user's root namespace. Any files that are private
381 * to the application should be placed in a directory returned by
382 * {@link android.content.Context#getExternalFilesDir
Dianne Hackbornacaf0282010-03-30 14:39:35 -0700383 * Context.getExternalFilesDir}, which the system will take care of deleting
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700384 * if the application is uninstalled. Other shared files should be placed in
385 * one of the directories returned by
386 * {@link #getExternalStoragePublicDirectory}.
387 * <p>
388 * Writing to this path requires the
389 * {@link android.Manifest.permission#WRITE_EXTERNAL_STORAGE} permission,
Felipe Leme04a5d402016-02-08 16:44:06 -0800390 * and starting in {@link android.os.Build.VERSION_CODES#KITKAT}, read access requires the
Jeff Sharkey8c165792012-10-22 14:08:29 -0700391 * {@link android.Manifest.permission#READ_EXTERNAL_STORAGE} permission,
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700392 * which is automatically granted if you hold the write permission.
393 * <p>
Chet Haasee8222dd2013-09-05 07:44:18 -0700394 * Starting in {@link android.os.Build.VERSION_CODES#KITKAT}, if your
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700395 * application only needs to store internal data, consider using
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700396 * {@link Context#getExternalFilesDir(String)},
397 * {@link Context#getExternalCacheDir()}, or
398 * {@link Context#getExternalMediaDirs()}, which require no permissions to
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700399 * read or write.
400 * <p>
401 * This path may change between platform versions, so applications should
402 * only persist relative paths.
403 * <p>
404 * Here is an example of typical code to monitor the state of external
405 * storage:
406 * <p>
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700407 * {@sample development/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800408 * monitor_storage}
Dianne Hackborn407f6252010-10-04 11:31:17 -0700409 *
410 * @see #getExternalStorageState()
411 * @see #isExternalStorageRemovable()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800412 */
413 public static File getExternalStorageDirectory() {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700414 throwIfUserRequired();
Jeff Sharkey48877892015-03-18 11:27:19 -0700415 return sCurrentUser.getExternalDirs()[0];
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700416 }
417
418 /** {@hide} */
419 public static File getLegacyExternalStorageDirectory() {
420 return new File(System.getenv(ENV_EXTERNAL_STORAGE));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800421 }
422
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700423 /** {@hide} */
424 public static File getLegacyExternalStorageObbDirectory() {
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700425 return buildPath(getLegacyExternalStorageDirectory(), DIR_ANDROID, DIR_OBB);
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700426 }
427
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800428 /**
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800429 * Standard directory in which to place any audio files that should be
430 * in the regular list of music for the user.
431 * This may be combined with
432 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS},
433 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
434 * of directories to categories a particular audio file as more than one
435 * type.
436 */
437 public static String DIRECTORY_MUSIC = "Music";
Felipe Lemec7b1f892016-01-15 15:02:31 -0800438
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800439 /**
440 * Standard directory in which to place any audio files that should be
441 * in the list of podcasts that the user can select (not as regular
442 * music).
443 * This may be combined with {@link #DIRECTORY_MUSIC},
444 * {@link #DIRECTORY_NOTIFICATIONS},
445 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
446 * of directories to categories a particular audio file as more than one
447 * type.
448 */
449 public static String DIRECTORY_PODCASTS = "Podcasts";
Felipe Lemeb012f912016-01-22 16:49:55 -0800450
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800451 /**
452 * Standard directory in which to place any audio files that should be
453 * in the list of ringtones that the user can select (not as regular
454 * music).
455 * This may be combined with {@link #DIRECTORY_MUSIC},
456 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS}, and
457 * {@link #DIRECTORY_ALARMS} as a series
458 * of directories to categories a particular audio file as more than one
459 * type.
460 */
461 public static String DIRECTORY_RINGTONES = "Ringtones";
Felipe Lemeb012f912016-01-22 16:49:55 -0800462
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800463 /**
464 * Standard directory in which to place any audio files that should be
465 * in the list of alarms that the user can select (not as regular
466 * music).
467 * This may be combined with {@link #DIRECTORY_MUSIC},
468 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS},
469 * and {@link #DIRECTORY_RINGTONES} as a series
470 * of directories to categories a particular audio file as more than one
471 * type.
472 */
473 public static String DIRECTORY_ALARMS = "Alarms";
Felipe Lemeb012f912016-01-22 16:49:55 -0800474
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800475 /**
476 * Standard directory in which to place any audio files that should be
477 * in the list of notifications that the user can select (not as regular
478 * music).
479 * This may be combined with {@link #DIRECTORY_MUSIC},
480 * {@link #DIRECTORY_PODCASTS},
481 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
482 * of directories to categories a particular audio file as more than one
483 * type.
484 */
485 public static String DIRECTORY_NOTIFICATIONS = "Notifications";
Felipe Lemeb012f912016-01-22 16:49:55 -0800486
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800487 /**
488 * Standard directory in which to place pictures that are available to
489 * the user. Note that this is primarily a convention for the top-level
490 * public directory, as the media scanner will find and collect pictures
491 * in any directory.
492 */
493 public static String DIRECTORY_PICTURES = "Pictures";
Felipe Lemeb012f912016-01-22 16:49:55 -0800494
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800495 /**
496 * Standard directory in which to place movies that are available to
497 * the user. Note that this is primarily a convention for the top-level
498 * public directory, as the media scanner will find and collect movies
499 * in any directory.
500 */
501 public static String DIRECTORY_MOVIES = "Movies";
Felipe Lemeb012f912016-01-22 16:49:55 -0800502
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800503 /**
504 * Standard directory in which to place files that have been downloaded by
505 * the user. Note that this is primarily a convention for the top-level
506 * public directory, you are free to download files anywhere in your own
Dianne Hackbornce59fb82010-04-07 17:19:04 -0700507 * private directories. Also note that though the constant here is
508 * named DIRECTORY_DOWNLOADS (plural), the actual file name is non-plural for
509 * backwards compatibility reasons.
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800510 */
Dianne Hackbornce59fb82010-04-07 17:19:04 -0700511 public static String DIRECTORY_DOWNLOADS = "Download";
Felipe Lemeb012f912016-01-22 16:49:55 -0800512
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800513 /**
514 * The traditional location for pictures and videos when mounting the
515 * device as a camera. Note that this is primarily a convention for the
516 * top-level public directory, as this convention makes no sense elsewhere.
517 */
518 public static String DIRECTORY_DCIM = "DCIM";
Jeff Sharkey3e1189b2013-09-12 21:59:06 -0700519
520 /**
521 * Standard directory in which to place documents that have been created by
522 * the user.
523 */
524 public static String DIRECTORY_DOCUMENTS = "Documents";
525
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800526 /**
Felipe Lemec7b1f892016-01-15 15:02:31 -0800527 * List of standard storage directories.
528 * <p>
529 * Each of its values have its own constant:
530 * <ul>
531 * <li>{@link #DIRECTORY_MUSIC}
532 * <li>{@link #DIRECTORY_PODCASTS}
533 * <li>{@link #DIRECTORY_ALARMS}
534 * <li>{@link #DIRECTORY_RINGTONES}
535 * <li>{@link #DIRECTORY_NOTIFICATIONS}
536 * <li>{@link #DIRECTORY_PICTURES}
537 * <li>{@link #DIRECTORY_MOVIES}
538 * <li>{@link #DIRECTORY_DOWNLOADS}
539 * <li>{@link #DIRECTORY_DCIM}
540 * <li>{@link #DIRECTORY_DOCUMENTS}
541 * </ul>
542 * @hide
543 */
Felipe Leme3e166b22016-02-24 10:17:41 -0800544 public static final String[] STANDARD_DIRECTORIES = {
Felipe Lemec7b1f892016-01-15 15:02:31 -0800545 DIRECTORY_MUSIC,
546 DIRECTORY_PODCASTS,
547 DIRECTORY_RINGTONES,
548 DIRECTORY_ALARMS,
549 DIRECTORY_NOTIFICATIONS,
550 DIRECTORY_PICTURES,
551 DIRECTORY_MOVIES,
552 DIRECTORY_DOWNLOADS,
553 DIRECTORY_DCIM,
Steve McKayab3b8932016-02-16 11:37:03 -0800554 DIRECTORY_DOCUMENTS
Felipe Lemec7b1f892016-01-15 15:02:31 -0800555 };
556
557 /**
Felipe Lemeb012f912016-01-22 16:49:55 -0800558 * @hide
559 */
560 public static boolean isStandardDirectory(String dir) {
561 for (String valid : STANDARD_DIRECTORIES) {
562 if (valid.equals(dir)) {
563 return true;
564 }
565 }
566 return false;
567 }
568
569 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700570 * Get a top-level shared/external storage directory for placing files of a
571 * particular type. This is where the user will typically place and manage
572 * their own files, so you should be careful about what you put here to
573 * ensure you don't erase their files or get in the way of their own
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800574 * organization.
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700575 * <p>
576 * On devices with multiple users (as described by {@link UserManager}),
577 * each user has their own isolated shared storage. Applications only have
578 * access to the shared storage for the user they're running as.
579 * </p>
580 * <p>
581 * Here is an example of typical code to manipulate a picture on the public
582 * shared storage:
583 * </p>
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800584 * {@sample development/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java
585 * public_picture}
Felipe Lemec7b1f892016-01-15 15:02:31 -0800586 *
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700587 * @param type The type of storage directory to return. Should be one of
588 * {@link #DIRECTORY_MUSIC}, {@link #DIRECTORY_PODCASTS},
589 * {@link #DIRECTORY_RINGTONES}, {@link #DIRECTORY_ALARMS},
590 * {@link #DIRECTORY_NOTIFICATIONS}, {@link #DIRECTORY_PICTURES},
Felipe Lemec7b1f892016-01-15 15:02:31 -0800591 * {@link #DIRECTORY_MOVIES}, {@link #DIRECTORY_DOWNLOADS},
592 * {@link #DIRECTORY_DCIM}, or {@link #DIRECTORY_DOCUMENTS}. May not be null.
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700593 * @return Returns the File path for the directory. Note that this directory
594 * may not yet exist, so you must make sure it exists before using
595 * it such as with {@link File#mkdirs File.mkdirs()}.
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800596 */
597 public static File getExternalStoragePublicDirectory(String type) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700598 throwIfUserRequired();
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700599 return sCurrentUser.buildExternalStoragePublicDirs(type)[0];
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800600 }
601
602 /**
603 * Returns the path for android-specific data on the SD card.
604 * @hide
605 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700606 public static File[] buildExternalStorageAndroidDataDirs() {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700607 throwIfUserRequired();
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700608 return sCurrentUser.buildExternalStorageAndroidDataDirs();
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800609 }
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700610
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800611 /**
612 * Generates the raw path to an application's data
613 * @hide
614 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700615 public static File[] buildExternalStorageAppDataDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700616 throwIfUserRequired();
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700617 return sCurrentUser.buildExternalStorageAppDataDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800618 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800619
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800620 /**
621 * Generates the raw path to an application's media
622 * @hide
623 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700624 public static File[] buildExternalStorageAppMediaDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700625 throwIfUserRequired();
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700626 return sCurrentUser.buildExternalStorageAppMediaDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800627 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800628
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800629 /**
Dianne Hackborn805fd7e2011-01-16 18:30:29 -0800630 * Generates the raw path to an application's OBB files
631 * @hide
632 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700633 public static File[] buildExternalStorageAppObbDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700634 throwIfUserRequired();
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700635 return sCurrentUser.buildExternalStorageAppObbDirs(packageName);
Dianne Hackborn805fd7e2011-01-16 18:30:29 -0800636 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800637
Dianne Hackborn805fd7e2011-01-16 18:30:29 -0800638 /**
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800639 * Generates the path to an application's files.
640 * @hide
641 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700642 public static File[] buildExternalStorageAppFilesDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700643 throwIfUserRequired();
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700644 return sCurrentUser.buildExternalStorageAppFilesDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800645 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700646
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800647 /**
648 * Generates the path to an application's cache.
649 * @hide
650 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700651 public static File[] buildExternalStorageAppCacheDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700652 throwIfUserRequired();
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700653 return sCurrentUser.buildExternalStorageAppCacheDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800654 }
Felipe Lemeb012f912016-01-22 16:49:55 -0800655
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800656 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700657 * Return the download/cache content directory.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800658 */
659 public static File getDownloadCacheDirectory() {
Jeff Sharkey15447792015-11-05 16:18:51 -0800660 return DIR_DOWNLOAD_CACHE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800661 }
662
663 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700664 * Unknown storage state, such as when a path isn't backed by known storage
665 * media.
666 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800667 * @see #getExternalStorageState(File)
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700668 */
669 public static final String MEDIA_UNKNOWN = "unknown";
670
671 /**
672 * Storage state if the media is not present.
673 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800674 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800675 */
676 public static final String MEDIA_REMOVED = "removed";
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700677
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800678 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700679 * Storage state if the media is present but not mounted.
680 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800681 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800682 */
683 public static final String MEDIA_UNMOUNTED = "unmounted";
684
685 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700686 * Storage state if the media is present and being disk-checked.
687 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800688 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800689 */
690 public static final String MEDIA_CHECKING = "checking";
691
692 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700693 * Storage state if the media is present but is blank or is using an
694 * unsupported filesystem.
695 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800696 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800697 */
698 public static final String MEDIA_NOFS = "nofs";
699
700 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700701 * Storage state if the media is present and mounted at its mount point with
702 * read/write access.
703 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800704 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800705 */
706 public static final String MEDIA_MOUNTED = "mounted";
707
708 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700709 * Storage state if the media is present and mounted at its mount point with
710 * read-only access.
711 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800712 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800713 */
714 public static final String MEDIA_MOUNTED_READ_ONLY = "mounted_ro";
715
716 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700717 * Storage state if the media is present not mounted, and shared via USB
718 * mass storage.
719 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800720 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800721 */
722 public static final String MEDIA_SHARED = "shared";
723
724 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700725 * Storage state if the media was removed before it was unmounted.
726 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800727 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800728 */
729 public static final String MEDIA_BAD_REMOVAL = "bad_removal";
730
731 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700732 * Storage state if the media is present but cannot be mounted. Typically
733 * this happens if the file system on the media is corrupted.
734 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800735 * @see #getExternalStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800736 */
737 public static final String MEDIA_UNMOUNTABLE = "unmountable";
738
739 /**
Jeff Sharkey48877892015-03-18 11:27:19 -0700740 * Storage state if the media is in the process of being ejected.
741 *
742 * @see #getExternalStorageState(File)
743 */
744 public static final String MEDIA_EJECTING = "ejecting";
745
746 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700747 * Returns the current state of the primary shared/external storage media.
Felipe Lemec7b1f892016-01-15 15:02:31 -0800748 *
Jeff Sharkey8c165792012-10-22 14:08:29 -0700749 * @see #getExternalStorageDirectory()
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700750 * @return one of {@link #MEDIA_UNKNOWN}, {@link #MEDIA_REMOVED},
751 * {@link #MEDIA_UNMOUNTED}, {@link #MEDIA_CHECKING},
752 * {@link #MEDIA_NOFS}, {@link #MEDIA_MOUNTED},
753 * {@link #MEDIA_MOUNTED_READ_ONLY}, {@link #MEDIA_SHARED},
754 * {@link #MEDIA_BAD_REMOVAL}, or {@link #MEDIA_UNMOUNTABLE}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800755 */
756 public static String getExternalStorageState() {
Jeff Sharkey48877892015-03-18 11:27:19 -0700757 final File externalDir = sCurrentUser.getExternalDirs()[0];
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800758 return getExternalStorageState(externalDir);
759 }
760
761 /**
762 * @deprecated use {@link #getExternalStorageState(File)}
763 */
764 @Deprecated
765 public static String getStorageState(File path) {
766 return getExternalStorageState(path);
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700767 }
768
769 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700770 * Returns the current state of the shared/external storage media at the
771 * given path.
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700772 *
773 * @return one of {@link #MEDIA_UNKNOWN}, {@link #MEDIA_REMOVED},
774 * {@link #MEDIA_UNMOUNTED}, {@link #MEDIA_CHECKING},
775 * {@link #MEDIA_NOFS}, {@link #MEDIA_MOUNTED},
776 * {@link #MEDIA_MOUNTED_READ_ONLY}, {@link #MEDIA_SHARED},
777 * {@link #MEDIA_BAD_REMOVAL}, or {@link #MEDIA_UNMOUNTABLE}.
778 */
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800779 public static String getExternalStorageState(File path) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700780 final StorageVolume volume = StorageManager.getStorageVolume(path, UserHandle.myUserId());
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800781 if (volume != null) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700782 return volume.getState();
783 } else {
784 return MEDIA_UNKNOWN;
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700785 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800786 }
787
Dianne Hackborn407f6252010-10-04 11:31:17 -0700788 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700789 * Returns whether the primary shared/external storage media is physically
790 * removable.
Dianne Hackborn407f6252010-10-04 11:31:17 -0700791 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800792 * @return true if the storage device can be removed (such as an SD card),
793 * or false if the storage device is built in and cannot be
794 * physically removed.
Dianne Hackborn407f6252010-10-04 11:31:17 -0700795 */
796 public static boolean isExternalStorageRemovable() {
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800797 if (isStorageDisabled()) return false;
Jeff Sharkey48877892015-03-18 11:27:19 -0700798 final File externalDir = sCurrentUser.getExternalDirs()[0];
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800799 return isExternalStorageRemovable(externalDir);
Dianne Hackborn407f6252010-10-04 11:31:17 -0700800 }
801
Kenny Roote1ff2142010-10-12 11:20:01 -0700802 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700803 * Returns whether the shared/external storage media at the given path is
804 * physically removable.
Andy Stadler50c294f2011-03-07 19:13:42 -0800805 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800806 * @return true if the storage device can be removed (such as an SD card),
807 * or false if the storage device is built in and cannot be
808 * physically removed.
809 * @throws IllegalArgumentException if the path is not a valid storage
810 * device.
811 */
812 public static boolean isExternalStorageRemovable(File path) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700813 final StorageVolume volume = StorageManager.getStorageVolume(path, UserHandle.myUserId());
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800814 if (volume != null) {
815 return volume.isRemovable();
816 } else {
817 throw new IllegalArgumentException("Failed to find storage device at " + path);
818 }
819 }
820
821 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700822 * Returns whether the primary shared/external storage media is emulated.
823 * <p>
824 * The contents of emulated storage devices are backed by a private user
825 * data partition, which means there is little benefit to apps storing data
826 * here instead of the private directories returned by
827 * {@link Context#getFilesDir()}, etc.
828 * <p>
829 * This returns true when emulated storage is backed by either internal
830 * storage or an adopted storage device.
Andy Stadler50c294f2011-03-07 19:13:42 -0800831 *
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800832 * @see DevicePolicyManager#setStorageEncryption(android.content.ComponentName,
833 * boolean)
Kenny Roote1ff2142010-10-12 11:20:01 -0700834 */
835 public static boolean isExternalStorageEmulated() {
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800836 if (isStorageDisabled()) return false;
Jeff Sharkey48877892015-03-18 11:27:19 -0700837 final File externalDir = sCurrentUser.getExternalDirs()[0];
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800838 return isExternalStorageEmulated(externalDir);
839 }
840
841 /**
Jeff Sharkey59d28dc82015-10-14 13:56:23 -0700842 * Returns whether the shared/external storage media at the given path is
843 * emulated.
844 * <p>
845 * The contents of emulated storage devices are backed by a private user
846 * data partition, which means there is little benefit to apps storing data
847 * here instead of the private directories returned by
848 * {@link Context#getFilesDir()}, etc.
849 * <p>
850 * This returns true when emulated storage is backed by either internal
851 * storage or an adopted storage device.
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800852 *
853 * @throws IllegalArgumentException if the path is not a valid storage
854 * device.
855 */
856 public static boolean isExternalStorageEmulated(File path) {
Jeff Sharkey48877892015-03-18 11:27:19 -0700857 final StorageVolume volume = StorageManager.getStorageVolume(path, UserHandle.myUserId());
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800858 if (volume != null) {
859 return volume.isEmulated();
860 } else {
861 throw new IllegalArgumentException("Failed to find storage device at " + path);
862 }
Kenny Roote1ff2142010-10-12 11:20:01 -0700863 }
864
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800865 static File getDirectory(String variableName, String defaultPath) {
866 String path = System.getenv(variableName);
867 return path == null ? new File(defaultPath) : new File(path);
868 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700869
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700870 /** {@hide} */
871 public static void setUserRequired(boolean userRequired) {
872 sUserRequired = userRequired;
873 }
874
875 private static void throwIfUserRequired() {
876 if (sUserRequired) {
877 Log.wtf(TAG, "Path requests must specify a user by using UserEnvironment",
878 new Throwable());
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700879 }
880 }
881
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700882 /**
883 * Append path segments to each given base path, returning result.
884 *
885 * @hide
886 */
887 public static File[] buildPaths(File[] base, String... segments) {
888 File[] result = new File[base.length];
889 for (int i = 0; i < base.length; i++) {
890 result[i] = buildPath(base[i], segments);
891 }
892 return result;
893 }
894
895 /**
896 * Append path segments to given base path, returning result.
897 *
898 * @hide
899 */
900 public static File buildPath(File base, String... segments) {
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700901 File cur = base;
902 for (String segment : segments) {
903 if (cur == null) {
904 cur = new File(segment);
905 } else {
906 cur = new File(cur, segment);
907 }
908 }
909 return cur;
910 }
Jeff Sharkey63d0a062013-03-01 16:12:55 -0800911
Jeff Sharkey4ca728c2014-01-10 16:27:19 -0800912 private static boolean isStorageDisabled() {
913 return SystemProperties.getBoolean("config.disable_storage", false);
914 }
915
Jeff Sharkey63d0a062013-03-01 16:12:55 -0800916 /**
917 * If the given path exists on emulated external storage, return the
918 * translated backing path hosted on internal storage. This bypasses any
919 * emulation later, improving performance. This is <em>only</em> suitable
920 * for read-only access.
921 * <p>
922 * Returns original path if given path doesn't meet these criteria. Callers
923 * must hold {@link android.Manifest.permission#WRITE_MEDIA_STORAGE}
924 * permission.
925 *
926 * @hide
927 */
928 public static File maybeTranslateEmulatedPathToInternal(File path) {
Jeff Sharkey50a05452015-04-29 11:24:52 -0700929 return StorageManager.maybeTranslateEmulatedPathToInternal(path);
Jeff Sharkey63d0a062013-03-01 16:12:55 -0800930 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800931}