blob: db5cf1c4094ee8d007501c9684ffc2faafdb965b [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 Sharkey1abdb712013-08-11 16:28:14 -070019import android.content.Context;
San Mehatb1043402010-02-05 08:26:50 -080020import android.os.storage.IMountService;
Jeff Sharkeyb049e212012-09-07 23:16:01 -070021import android.os.storage.StorageManager;
Mike Lockwood2f6a3882011-05-09 19:08:06 -070022import android.os.storage.StorageVolume;
Jeff Sharkeyb049e212012-09-07 23:16:01 -070023import android.text.TextUtils;
Kenny Rootb2278dc2011-01-18 13:03:28 -080024import android.util.Log;
San Mehat7fd0fee2009-12-17 07:12:23 -080025
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -080026import com.android.internal.annotations.GuardedBy;
Jeff Sharkey44cbdec2013-10-07 16:49:47 -070027import com.google.android.collect.Lists;
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -080028
Gilles Debunneee1d6302011-05-13 10:09:32 -070029import java.io.File;
Jeff Sharkey63d0a062013-03-01 16:12:55 -080030import java.io.IOException;
Jeff Sharkey44cbdec2013-10-07 16:49:47 -070031import java.util.ArrayList;
Gilles Debunneee1d6302011-05-13 10:09:32 -070032
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033/**
34 * Provides access to environment variables.
35 */
36public class Environment {
Kenny Rootb2278dc2011-01-18 13:03:28 -080037 private static final String TAG = "Environment";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038
Jeff Sharkeyb049e212012-09-07 23:16:01 -070039 private static final String ENV_EXTERNAL_STORAGE = "EXTERNAL_STORAGE";
Jeff Sharkey4fbbda42012-09-24 18:34:07 -070040 private static final String ENV_EMULATED_STORAGE_SOURCE = "EMULATED_STORAGE_SOURCE";
Jeff Sharkeyb049e212012-09-07 23:16:01 -070041 private static final String ENV_EMULATED_STORAGE_TARGET = "EMULATED_STORAGE_TARGET";
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -070042 private static final String ENV_MEDIA_STORAGE = "MEDIA_STORAGE";
Jeff Sharkey44cbdec2013-10-07 16:49:47 -070043 private static final String ENV_SECONDARY_STORAGE = "SECONDARY_STORAGE";
Jeff Sharkey63d0a062013-03-01 16:12:55 -080044 private static final String ENV_ANDROID_ROOT = "ANDROID_ROOT";
Jeff Sharkeyb049e212012-09-07 23:16:01 -070045
Jeff Sharkeydfa45302012-09-12 16:25:22 -070046 /** {@hide} */
Jeff Sharkey1abdb712013-08-11 16:28:14 -070047 public static final String DIR_ANDROID = "Android";
48 private static final String DIR_DATA = "data";
49 private static final String DIR_MEDIA = "media";
50 private static final String DIR_OBB = "obb";
51 private static final String DIR_FILES = "files";
52 private static final String DIR_CACHE = "cache";
53
54 /** {@hide} */
55 @Deprecated
56 public static final String DIRECTORY_ANDROID = DIR_ANDROID;
Jeff Sharkeydfa45302012-09-12 16:25:22 -070057
Jeff Sharkey63d0a062013-03-01 16:12:55 -080058 private static final File DIR_ANDROID_ROOT = getDirectory(ENV_ANDROID_ROOT, "/system");
59 private static final File DIR_MEDIA_STORAGE = getDirectory(ENV_MEDIA_STORAGE, "/data/media");
60
61 private static final String CANONCIAL_EMULATED_STORAGE_TARGET = getCanonicalPathOrNull(
62 ENV_EMULATED_STORAGE_TARGET);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063
Oscar Montemayora8529f62009-11-18 10:14:20 -080064 private static final String SYSTEM_PROPERTY_EFS_ENABLED = "persist.security.efs.enabled";
65
Jeff Sharkeyb049e212012-09-07 23:16:01 -070066 private static UserEnvironment sCurrentUser;
Jeff Sharkey48749fc2013-04-19 13:25:04 -070067 private static boolean sUserRequired;
Kenny Roote1ff2142010-10-12 11:20:01 -070068
Jeff Sharkeyb049e212012-09-07 23:16:01 -070069 private static final Object sLock = new Object();
70
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -080071 @GuardedBy("sLock")
Jeff Sharkeyb049e212012-09-07 23:16:01 -070072 private static volatile StorageVolume sPrimaryVolume;
Mike Lockwood2f6a3882011-05-09 19:08:06 -070073
74 private static StorageVolume getPrimaryVolume() {
Dan Morrille4d9a012013-03-28 18:10:43 -070075 if (SystemProperties.getBoolean("config.disable_storage", false)) {
76 return null;
77 }
78
Jeff Sharkeyb049e212012-09-07 23:16:01 -070079 if (sPrimaryVolume == null) {
80 synchronized (sLock) {
81 if (sPrimaryVolume == null) {
Mike Lockwood2f6a3882011-05-09 19:08:06 -070082 try {
83 IMountService mountService = IMountService.Stub.asInterface(ServiceManager
84 .getService("mount"));
Jeff Sharkeyb049e212012-09-07 23:16:01 -070085 final StorageVolume[] volumes = mountService.getVolumeList();
86 sPrimaryVolume = StorageManager.getPrimaryVolume(volumes);
Mike Lockwood2f6a3882011-05-09 19:08:06 -070087 } catch (Exception e) {
88 Log.e(TAG, "couldn't talk to MountService", e);
89 }
90 }
91 }
92 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -070093 return sPrimaryVolume;
94 }
95
96 static {
97 initForCurrentUser();
98 }
99
100 /** {@hide} */
101 public static void initForCurrentUser() {
102 final int userId = UserHandle.myUserId();
103 sCurrentUser = new UserEnvironment(userId);
104
105 synchronized (sLock) {
106 sPrimaryVolume = null;
107 }
108 }
109
110 /** {@hide} */
111 public static class UserEnvironment {
112 // TODO: generalize further to create package-specific environment
113
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700114 /** External storage dirs, as visible to vold */
115 private final File[] mExternalDirsForVold;
116 /** External storage dirs, as visible to apps */
117 private final File[] mExternalDirsForApp;
118 /** Primary emulated storage dir for direct access */
119 private final File mEmulatedDirForDirect;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700120
121 public UserEnvironment(int userId) {
122 // See storage config details at http://source.android.com/tech/storage/
123 String rawExternalStorage = System.getenv(ENV_EXTERNAL_STORAGE);
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700124 String rawEmulatedSource = System.getenv(ENV_EMULATED_STORAGE_SOURCE);
125 String rawEmulatedTarget = System.getenv(ENV_EMULATED_STORAGE_TARGET);
Jeff Sharkey44cbdec2013-10-07 16:49:47 -0700126
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -0700127 String rawMediaStorage = System.getenv(ENV_MEDIA_STORAGE);
128 if (TextUtils.isEmpty(rawMediaStorage)) {
129 rawMediaStorage = "/data/media";
130 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700131
Jeff Sharkey44cbdec2013-10-07 16:49:47 -0700132 ArrayList<File> externalForVold = Lists.newArrayList();
133 ArrayList<File> externalForApp = Lists.newArrayList();
134
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700135 if (!TextUtils.isEmpty(rawEmulatedTarget)) {
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700136 // Device has emulated storage; external storage paths should have
137 // userId burned into them.
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -0700138 final String rawUserId = Integer.toString(userId);
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700139 final File emulatedSourceBase = new File(rawEmulatedSource);
140 final File emulatedTargetBase = new File(rawEmulatedTarget);
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -0700141 final File mediaBase = new File(rawMediaStorage);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700142
143 // /storage/emulated/0
Jeff Sharkey44cbdec2013-10-07 16:49:47 -0700144 externalForVold.add(buildPath(emulatedSourceBase, rawUserId));
145 externalForApp.add(buildPath(emulatedTargetBase, rawUserId));
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -0700146 // /data/media/0
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700147 mEmulatedDirForDirect = buildPath(mediaBase, rawUserId);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700148
149 } else {
150 // Device has physical external storage; use plain paths.
151 if (TextUtils.isEmpty(rawExternalStorage)) {
152 Log.w(TAG, "EXTERNAL_STORAGE undefined; falling back to default");
153 rawExternalStorage = "/storage/sdcard0";
154 }
155
156 // /storage/sdcard0
Jeff Sharkey44cbdec2013-10-07 16:49:47 -0700157 externalForVold.add(new File(rawExternalStorage));
158 externalForApp.add(new File(rawExternalStorage));
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -0700159 // /data/media
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700160 mEmulatedDirForDirect = new File(rawMediaStorage);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700161 }
Jeff Sharkey44cbdec2013-10-07 16:49:47 -0700162
163 // Splice in any secondary storage paths, but only for owner
164 final String rawSecondaryStorage = System.getenv(ENV_SECONDARY_STORAGE);
165 if (!TextUtils.isEmpty(rawSecondaryStorage) && userId == UserHandle.USER_OWNER) {
166 for (String secondaryPath : rawSecondaryStorage.split(":")) {
167 externalForVold.add(new File(secondaryPath));
168 externalForApp.add(new File(secondaryPath));
169 }
170 }
171
172 mExternalDirsForVold = externalForVold.toArray(new File[externalForVold.size()]);
173 mExternalDirsForApp = externalForApp.toArray(new File[externalForApp.size()]);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700174 }
175
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700176 @Deprecated
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700177 public File getExternalStorageDirectory() {
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700178 return mExternalDirsForApp[0];
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700179 }
180
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700181 @Deprecated
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700182 public File getExternalStoragePublicDirectory(String type) {
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700183 return buildExternalStoragePublicDirs(type)[0];
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700184 }
185
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700186 public File[] getExternalDirsForVold() {
187 return mExternalDirsForVold;
188 }
189
190 public File[] getExternalDirsForApp() {
191 return mExternalDirsForApp;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700192 }
193
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700194 public File getMediaDir() {
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700195 return mEmulatedDirForDirect;
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700196 }
197
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700198 public File[] buildExternalStoragePublicDirs(String type) {
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700199 return buildPaths(mExternalDirsForApp, type);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700200 }
201
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700202 public File[] buildExternalStorageAndroidDataDirs() {
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700203 return buildPaths(mExternalDirsForApp, DIR_ANDROID, DIR_DATA);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700204 }
205
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700206 public File[] buildExternalStorageAndroidObbDirs() {
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700207 return buildPaths(mExternalDirsForApp, DIR_ANDROID, DIR_OBB);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700208 }
209
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700210 public File[] buildExternalStorageAppDataDirs(String packageName) {
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700211 return buildPaths(mExternalDirsForApp, DIR_ANDROID, DIR_DATA, packageName);
212 }
213
214 public File[] buildExternalStorageAppDataDirsForVold(String packageName) {
215 return buildPaths(mExternalDirsForVold, DIR_ANDROID, DIR_DATA, packageName);
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700216 }
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -0700217
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700218 public File[] buildExternalStorageAppMediaDirs(String packageName) {
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700219 return buildPaths(mExternalDirsForApp, DIR_ANDROID, DIR_MEDIA, packageName);
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700220 }
221
222 public File[] buildExternalStorageAppObbDirs(String packageName) {
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700223 return buildPaths(mExternalDirsForApp, DIR_ANDROID, DIR_OBB, packageName);
224 }
225
226 public File[] buildExternalStorageAppObbDirsForVold(String packageName) {
227 return buildPaths(mExternalDirsForVold, DIR_ANDROID, DIR_OBB, packageName);
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700228 }
229
230 public File[] buildExternalStorageAppFilesDirs(String packageName) {
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700231 return buildPaths(mExternalDirsForApp, DIR_ANDROID, DIR_DATA, packageName, DIR_FILES);
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700232 }
233
234 public File[] buildExternalStorageAppCacheDirs(String packageName) {
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700235 return buildPaths(mExternalDirsForApp, DIR_ANDROID, DIR_DATA, packageName, DIR_CACHE);
Jeff Sharkey3fe5bf62012-09-18 15:54:52 -0700236 }
Mike Lockwood2f6a3882011-05-09 19:08:06 -0700237 }
San Mehat7fd0fee2009-12-17 07:12:23 -0800238
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800239 /**
240 * Gets the Android root directory.
241 */
242 public static File getRootDirectory() {
Jeff Sharkey63d0a062013-03-01 16:12:55 -0800243 return DIR_ANDROID_ROOT;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800244 }
245
Jason parksa3cdaa52011-01-13 14:15:43 -0600246 /**
247 * Gets the system directory available for secure storage.
248 * If Encrypted File system is enabled, it returns an encrypted directory (/data/secure/system).
249 * Otherwise, it returns the unencrypted /data/system directory.
250 * @return File object representing the secure storage system directory.
251 * @hide
252 */
253 public static File getSystemSecureDirectory() {
254 if (isEncryptedFilesystemEnabled()) {
255 return new File(SECURE_DATA_DIRECTORY, "system");
256 } else {
257 return new File(DATA_DIRECTORY, "system");
258 }
259 }
260
261 /**
262 * Gets the data directory for secure storage.
263 * If Encrypted File system is enabled, it returns an encrypted directory (/data/secure).
264 * Otherwise, it returns the unencrypted /data directory.
265 * @return File object representing the data directory for secure storage.
266 * @hide
267 */
268 public static File getSecureDataDirectory() {
269 if (isEncryptedFilesystemEnabled()) {
270 return SECURE_DATA_DIRECTORY;
271 } else {
272 return DATA_DIRECTORY;
273 }
274 }
275
276 /**
Jeff Sharkeyd525baa2012-05-22 18:25:32 -0700277 * Return directory used for internal media storage, which is protected by
278 * {@link android.Manifest.permission#WRITE_MEDIA_STORAGE}.
279 *
280 * @hide
281 */
282 public static File getMediaStorageDirectory() {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700283 throwIfUserRequired();
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700284 return sCurrentUser.getMediaDir();
Jeff Sharkeyd525baa2012-05-22 18:25:32 -0700285 }
286
287 /**
Amith Yamasani61f57372012-08-31 12:12:28 -0700288 * Return the system directory for a user. This is for use by system services to store
289 * files relating to the user. This directory will be automatically deleted when the user
290 * is removed.
291 *
292 * @hide
293 */
294 public static File getUserSystemDirectory(int userId) {
295 return new File(new File(getSystemSecureDirectory(), "users"), Integer.toString(userId));
296 }
297
298 /**
Jason parksa3cdaa52011-01-13 14:15:43 -0600299 * Returns whether the Encrypted File System feature is enabled on the device or not.
300 * @return <code>true</code> if Encrypted File System feature is enabled, <code>false</code>
301 * if disabled.
302 * @hide
303 */
304 public static boolean isEncryptedFilesystemEnabled() {
305 return SystemProperties.getBoolean(SYSTEM_PROPERTY_EFS_ENABLED, false);
306 }
307
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800308 private static final File DATA_DIRECTORY
309 = getDirectory("ANDROID_DATA", "/data");
310
Oscar Montemayora8529f62009-11-18 10:14:20 -0800311 /**
312 * @hide
313 */
314 private static final File SECURE_DATA_DIRECTORY
315 = getDirectory("ANDROID_SECURE_DATA", "/data/secure");
316
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700317 private static final File DOWNLOAD_CACHE_DIRECTORY = getDirectory("DOWNLOAD_CACHE", "/cache");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800318
319 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700320 * Return the user data directory.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800321 */
322 public static File getDataDirectory() {
323 return DATA_DIRECTORY;
324 }
325
326 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700327 * Return the primary external storage directory. This directory may not
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800328 * currently be accessible if it has been mounted by the user on their
329 * computer, has been removed from the device, or some other problem has
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700330 * happened. You can determine its current state with
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800331 * {@link #getExternalStorageState()}.
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700332 * <p>
333 * <em>Note: don't be confused by the word "external" here. This directory
334 * can better be thought as media/shared storage. It is a filesystem that
335 * can hold a relatively large amount of data and that is shared across all
336 * applications (does not enforce permissions). Traditionally this is an SD
337 * card, but it may also be implemented as built-in storage in a device that
338 * is distinct from the protected internal storage and can be mounted as a
339 * filesystem on a computer.</em>
340 * <p>
341 * On devices with multiple users (as described by {@link UserManager}),
342 * each user has their own isolated external storage. Applications only have
343 * access to the external storage for the user they're running as.
344 * <p>
345 * In devices with multiple "external" storage directories, this directory
Dianne Hackborn407f6252010-10-04 11:31:17 -0700346 * represents the "primary" external storage that the user will interact
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700347 * with. Access to secondary storage is available through
348 * <p>
349 * Applications should not directly use this top-level directory, in order
350 * to avoid polluting the user's root namespace. Any files that are private
351 * to the application should be placed in a directory returned by
352 * {@link android.content.Context#getExternalFilesDir
Dianne Hackbornacaf0282010-03-30 14:39:35 -0700353 * Context.getExternalFilesDir}, which the system will take care of deleting
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700354 * if the application is uninstalled. Other shared files should be placed in
355 * one of the directories returned by
356 * {@link #getExternalStoragePublicDirectory}.
357 * <p>
358 * Writing to this path requires the
359 * {@link android.Manifest.permission#WRITE_EXTERNAL_STORAGE} permission,
360 * and starting in read access requires the
Jeff Sharkey8c165792012-10-22 14:08:29 -0700361 * {@link android.Manifest.permission#READ_EXTERNAL_STORAGE} permission,
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700362 * which is automatically granted if you hold the write permission.
363 * <p>
Chet Haasee8222dd2013-09-05 07:44:18 -0700364 * Starting in {@link android.os.Build.VERSION_CODES#KITKAT}, if your
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700365 * application only needs to store internal data, consider using
366 * {@link Context#getExternalFilesDir(String)} or
367 * {@link Context#getExternalCacheDir()}, which require no permissions to
368 * read or write.
369 * <p>
370 * This path may change between platform versions, so applications should
371 * only persist relative paths.
372 * <p>
373 * Here is an example of typical code to monitor the state of external
374 * storage:
375 * <p>
376 * {@sample
377 * development/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800378 * monitor_storage}
Dianne Hackborn407f6252010-10-04 11:31:17 -0700379 *
380 * @see #getExternalStorageState()
381 * @see #isExternalStorageRemovable()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800382 */
383 public static File getExternalStorageDirectory() {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700384 throwIfUserRequired();
Jeff Sharkey2d8b4e82013-09-17 17:30:33 -0700385 return sCurrentUser.getExternalDirsForApp()[0];
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700386 }
387
388 /** {@hide} */
389 public static File getLegacyExternalStorageDirectory() {
390 return new File(System.getenv(ENV_EXTERNAL_STORAGE));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800391 }
392
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700393 /** {@hide} */
394 public static File getLegacyExternalStorageObbDirectory() {
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700395 return buildPath(getLegacyExternalStorageDirectory(), DIR_ANDROID, DIR_OBB);
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700396 }
397
398 /** {@hide} */
399 public static File getEmulatedStorageSource(int userId) {
400 // /mnt/shell/emulated/0
401 return new File(System.getenv(ENV_EMULATED_STORAGE_SOURCE), String.valueOf(userId));
402 }
403
404 /** {@hide} */
405 public static File getEmulatedStorageObbSource() {
406 // /mnt/shell/emulated/obb
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700407 return new File(System.getenv(ENV_EMULATED_STORAGE_SOURCE), DIR_OBB);
Jeff Sharkey4fbbda42012-09-24 18:34:07 -0700408 }
409
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800410 /**
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800411 * Standard directory in which to place any audio files that should be
412 * in the regular list of music for the user.
413 * This may be combined with
414 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS},
415 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
416 * of directories to categories a particular audio file as more than one
417 * type.
418 */
419 public static String DIRECTORY_MUSIC = "Music";
420
421 /**
422 * Standard directory in which to place any audio files that should be
423 * in the list of podcasts that the user can select (not as regular
424 * music).
425 * This may be combined with {@link #DIRECTORY_MUSIC},
426 * {@link #DIRECTORY_NOTIFICATIONS},
427 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
428 * of directories to categories a particular audio file as more than one
429 * type.
430 */
431 public static String DIRECTORY_PODCASTS = "Podcasts";
432
433 /**
434 * Standard directory in which to place any audio files that should be
435 * in the list of ringtones that the user can select (not as regular
436 * music).
437 * This may be combined with {@link #DIRECTORY_MUSIC},
438 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS}, and
439 * {@link #DIRECTORY_ALARMS} as a series
440 * of directories to categories a particular audio file as more than one
441 * type.
442 */
443 public static String DIRECTORY_RINGTONES = "Ringtones";
444
445 /**
446 * Standard directory in which to place any audio files that should be
447 * in the list of alarms that the user can select (not as regular
448 * music).
449 * This may be combined with {@link #DIRECTORY_MUSIC},
450 * {@link #DIRECTORY_PODCASTS}, {@link #DIRECTORY_NOTIFICATIONS},
451 * and {@link #DIRECTORY_RINGTONES} as a series
452 * of directories to categories a particular audio file as more than one
453 * type.
454 */
455 public static String DIRECTORY_ALARMS = "Alarms";
456
457 /**
458 * Standard directory in which to place any audio files that should be
459 * in the list of notifications that the user can select (not as regular
460 * music).
461 * This may be combined with {@link #DIRECTORY_MUSIC},
462 * {@link #DIRECTORY_PODCASTS},
463 * {@link #DIRECTORY_ALARMS}, and {@link #DIRECTORY_RINGTONES} as a series
464 * of directories to categories a particular audio file as more than one
465 * type.
466 */
467 public static String DIRECTORY_NOTIFICATIONS = "Notifications";
468
469 /**
470 * Standard directory in which to place pictures that are available to
471 * the user. Note that this is primarily a convention for the top-level
472 * public directory, as the media scanner will find and collect pictures
473 * in any directory.
474 */
475 public static String DIRECTORY_PICTURES = "Pictures";
476
477 /**
478 * Standard directory in which to place movies that are available to
479 * the user. Note that this is primarily a convention for the top-level
480 * public directory, as the media scanner will find and collect movies
481 * in any directory.
482 */
483 public static String DIRECTORY_MOVIES = "Movies";
484
485 /**
486 * Standard directory in which to place files that have been downloaded by
487 * the user. Note that this is primarily a convention for the top-level
488 * public directory, you are free to download files anywhere in your own
Dianne Hackbornce59fb82010-04-07 17:19:04 -0700489 * private directories. Also note that though the constant here is
490 * named DIRECTORY_DOWNLOADS (plural), the actual file name is non-plural for
491 * backwards compatibility reasons.
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800492 */
Dianne Hackbornce59fb82010-04-07 17:19:04 -0700493 public static String DIRECTORY_DOWNLOADS = "Download";
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800494
495 /**
496 * The traditional location for pictures and videos when mounting the
497 * device as a camera. Note that this is primarily a convention for the
498 * top-level public directory, as this convention makes no sense elsewhere.
499 */
500 public static String DIRECTORY_DCIM = "DCIM";
Jeff Sharkey3e1189b2013-09-12 21:59:06 -0700501
502 /**
503 * Standard directory in which to place documents that have been created by
504 * the user.
505 */
506 public static String DIRECTORY_DOCUMENTS = "Documents";
507
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800508 /**
509 * Get a top-level public external storage directory for placing files of
510 * a particular type. This is where the user will typically place and
511 * manage their own files, so you should be careful about what you put here
512 * to ensure you don't erase their files or get in the way of their own
513 * organization.
514 *
Jeff Sharkey8c165792012-10-22 14:08:29 -0700515 * <p>On devices with multiple users (as described by {@link UserManager}),
516 * each user has their own isolated external storage. Applications only
517 * have access to the external storage for the user they're running as.</p>
518 *
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800519 * <p>Here is an example of typical code to manipulate a picture on
520 * the public external storage:</p>
521 *
522 * {@sample development/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java
523 * public_picture}
524 *
525 * @param type The type of storage directory to return. Should be one of
526 * {@link #DIRECTORY_MUSIC}, {@link #DIRECTORY_PODCASTS},
527 * {@link #DIRECTORY_RINGTONES}, {@link #DIRECTORY_ALARMS},
528 * {@link #DIRECTORY_NOTIFICATIONS}, {@link #DIRECTORY_PICTURES},
529 * {@link #DIRECTORY_MOVIES}, {@link #DIRECTORY_DOWNLOADS}, or
530 * {@link #DIRECTORY_DCIM}. May not be null.
531 *
532 * @return Returns the File path for the directory. Note that this
533 * directory may not yet exist, so you must make sure it exists before
534 * using it such as with {@link File#mkdirs File.mkdirs()}.
535 */
536 public static File getExternalStoragePublicDirectory(String type) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700537 throwIfUserRequired();
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700538 return sCurrentUser.buildExternalStoragePublicDirs(type)[0];
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800539 }
540
541 /**
542 * Returns the path for android-specific data on the SD card.
543 * @hide
544 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700545 public static File[] buildExternalStorageAndroidDataDirs() {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700546 throwIfUserRequired();
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700547 return sCurrentUser.buildExternalStorageAndroidDataDirs();
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800548 }
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700549
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800550 /**
551 * Generates the raw path to an application's data
552 * @hide
553 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700554 public static File[] buildExternalStorageAppDataDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700555 throwIfUserRequired();
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700556 return sCurrentUser.buildExternalStorageAppDataDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800557 }
558
559 /**
560 * Generates the raw path to an application's media
561 * @hide
562 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700563 public static File[] buildExternalStorageAppMediaDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700564 throwIfUserRequired();
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700565 return sCurrentUser.buildExternalStorageAppMediaDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800566 }
567
568 /**
Dianne Hackborn805fd7e2011-01-16 18:30:29 -0800569 * Generates the raw path to an application's OBB files
570 * @hide
571 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700572 public static File[] buildExternalStorageAppObbDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700573 throwIfUserRequired();
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700574 return sCurrentUser.buildExternalStorageAppObbDirs(packageName);
Dianne Hackborn805fd7e2011-01-16 18:30:29 -0800575 }
576
577 /**
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800578 * Generates the path to an application's files.
579 * @hide
580 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700581 public static File[] buildExternalStorageAppFilesDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700582 throwIfUserRequired();
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700583 return sCurrentUser.buildExternalStorageAppFilesDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800584 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700585
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800586 /**
587 * Generates the path to an application's cache.
588 * @hide
589 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700590 public static File[] buildExternalStorageAppCacheDirs(String packageName) {
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700591 throwIfUserRequired();
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700592 return sCurrentUser.buildExternalStorageAppCacheDirs(packageName);
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800593 }
594
595 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700596 * Return the download/cache content directory.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800597 */
598 public static File getDownloadCacheDirectory() {
599 return DOWNLOAD_CACHE_DIRECTORY;
600 }
601
602 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700603 * Unknown storage state, such as when a path isn't backed by known storage
604 * media.
605 *
606 * @see #getStorageState(File)
607 */
608 public static final String MEDIA_UNKNOWN = "unknown";
609
610 /**
611 * Storage state if the media is not present.
612 *
613 * @see #getStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800614 */
615 public static final String MEDIA_REMOVED = "removed";
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700616
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800617 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700618 * Storage state if the media is present but not mounted.
619 *
620 * @see #getStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800621 */
622 public static final String MEDIA_UNMOUNTED = "unmounted";
623
624 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700625 * Storage state if the media is present and being disk-checked.
626 *
627 * @see #getStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800628 */
629 public static final String MEDIA_CHECKING = "checking";
630
631 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700632 * Storage state if the media is present but is blank or is using an
633 * unsupported filesystem.
634 *
635 * @see #getStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800636 */
637 public static final String MEDIA_NOFS = "nofs";
638
639 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700640 * Storage state if the media is present and mounted at its mount point with
641 * read/write access.
642 *
643 * @see #getStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800644 */
645 public static final String MEDIA_MOUNTED = "mounted";
646
647 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700648 * Storage state if the media is present and mounted at its mount point with
649 * read-only access.
650 *
651 * @see #getStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800652 */
653 public static final String MEDIA_MOUNTED_READ_ONLY = "mounted_ro";
654
655 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700656 * Storage state if the media is present not mounted, and shared via USB
657 * mass storage.
658 *
659 * @see #getStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800660 */
661 public static final String MEDIA_SHARED = "shared";
662
663 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700664 * Storage state if the media was removed before it was unmounted.
665 *
666 * @see #getStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800667 */
668 public static final String MEDIA_BAD_REMOVAL = "bad_removal";
669
670 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700671 * Storage state if the media is present but cannot be mounted. Typically
672 * this happens if the file system on the media is corrupted.
673 *
674 * @see #getStorageState(File)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800675 */
676 public static final String MEDIA_UNMOUNTABLE = "unmountable";
677
678 /**
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700679 * Returns the current state of the primary "external" storage device.
Dianne Hackborne83cefce2010-02-04 17:38:14 -0800680 *
Jeff Sharkey8c165792012-10-22 14:08:29 -0700681 * @see #getExternalStorageDirectory()
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700682 * @return one of {@link #MEDIA_UNKNOWN}, {@link #MEDIA_REMOVED},
683 * {@link #MEDIA_UNMOUNTED}, {@link #MEDIA_CHECKING},
684 * {@link #MEDIA_NOFS}, {@link #MEDIA_MOUNTED},
685 * {@link #MEDIA_MOUNTED_READ_ONLY}, {@link #MEDIA_SHARED},
686 * {@link #MEDIA_BAD_REMOVAL}, or {@link #MEDIA_UNMOUNTABLE}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800687 */
688 public static String getExternalStorageState() {
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700689 return getStorageState(getExternalStorageDirectory());
690 }
691
692 /**
693 * Returns the current state of the storage device that provides the given
694 * path.
695 *
696 * @return one of {@link #MEDIA_UNKNOWN}, {@link #MEDIA_REMOVED},
697 * {@link #MEDIA_UNMOUNTED}, {@link #MEDIA_CHECKING},
698 * {@link #MEDIA_NOFS}, {@link #MEDIA_MOUNTED},
699 * {@link #MEDIA_MOUNTED_READ_ONLY}, {@link #MEDIA_SHARED},
700 * {@link #MEDIA_BAD_REMOVAL}, or {@link #MEDIA_UNMOUNTABLE}.
701 */
702 public static String getStorageState(File path) {
703 final String rawPath;
San Mehat7fd0fee2009-12-17 07:12:23 -0800704 try {
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700705 rawPath = path.getCanonicalPath();
706 } catch (IOException e) {
707 Log.w(TAG, "Failed to resolve target path: " + e);
708 return Environment.MEDIA_UNKNOWN;
San Mehat7fd0fee2009-12-17 07:12:23 -0800709 }
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700710
711 try {
712 final IMountService mountService = IMountService.Stub.asInterface(
713 ServiceManager.getService("mount"));
714 final StorageVolume[] volumes = mountService.getVolumeList();
715 for (StorageVolume volume : volumes) {
716 if (rawPath.startsWith(volume.getPath())) {
717 return mountService.getVolumeState(volume.getPath());
718 }
719 }
720 } catch (RemoteException e) {
721 Log.w(TAG, "Failed to find external storage state: " + e);
722 }
723 return Environment.MEDIA_UNKNOWN;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800724 }
725
Dianne Hackborn407f6252010-10-04 11:31:17 -0700726 /**
727 * Returns whether the primary "external" storage device is removable.
728 * If true is returned, this device is for example an SD card that the
729 * user can remove. If false is returned, the storage is built into
730 * the device and can not be physically removed.
731 *
732 * <p>See {@link #getExternalStorageDirectory()} for more information.
733 */
734 public static boolean isExternalStorageRemovable() {
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700735 final StorageVolume primary = getPrimaryVolume();
736 return (primary != null && primary.isRemovable());
Dianne Hackborn407f6252010-10-04 11:31:17 -0700737 }
738
Kenny Roote1ff2142010-10-12 11:20:01 -0700739 /**
740 * Returns whether the device has an external storage device which is
Andy Stadler50c294f2011-03-07 19:13:42 -0800741 * emulated. If true, the device does not have real external storage, and the directory
742 * returned by {@link #getExternalStorageDirectory()} will be allocated using a portion of
743 * the internal storage system.
744 *
745 * <p>Certain system services, such as the package manager, use this
Kenny Roote1ff2142010-10-12 11:20:01 -0700746 * to determine where to install an application.
Andy Stadler50c294f2011-03-07 19:13:42 -0800747 *
748 * <p>Emulated external storage may also be encrypted - see
749 * {@link android.app.admin.DevicePolicyManager#setStorageEncryption(
750 * android.content.ComponentName, boolean)} for additional details.
Kenny Roote1ff2142010-10-12 11:20:01 -0700751 */
752 public static boolean isExternalStorageEmulated() {
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700753 final StorageVolume primary = getPrimaryVolume();
754 return (primary != null && primary.isEmulated());
Kenny Roote1ff2142010-10-12 11:20:01 -0700755 }
756
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800757 static File getDirectory(String variableName, String defaultPath) {
758 String path = System.getenv(variableName);
759 return path == null ? new File(defaultPath) : new File(path);
760 }
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700761
Jeff Sharkey63d0a062013-03-01 16:12:55 -0800762 private static String getCanonicalPathOrNull(String variableName) {
763 String path = System.getenv(variableName);
764 if (path == null) {
765 return null;
766 }
767 try {
768 return new File(path).getCanonicalPath();
769 } catch (IOException e) {
770 Log.w(TAG, "Unable to resolve canonical path for " + path);
771 return null;
772 }
773 }
774
Jeff Sharkey48749fc2013-04-19 13:25:04 -0700775 /** {@hide} */
776 public static void setUserRequired(boolean userRequired) {
777 sUserRequired = userRequired;
778 }
779
780 private static void throwIfUserRequired() {
781 if (sUserRequired) {
782 Log.wtf(TAG, "Path requests must specify a user by using UserEnvironment",
783 new Throwable());
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700784 }
785 }
786
Jeff Sharkey1abdb712013-08-11 16:28:14 -0700787 /**
788 * Append path segments to each given base path, returning result.
789 *
790 * @hide
791 */
792 public static File[] buildPaths(File[] base, String... segments) {
793 File[] result = new File[base.length];
794 for (int i = 0; i < base.length; i++) {
795 result[i] = buildPath(base[i], segments);
796 }
797 return result;
798 }
799
800 /**
801 * Append path segments to given base path, returning result.
802 *
803 * @hide
804 */
805 public static File buildPath(File base, String... segments) {
Jeff Sharkeyb049e212012-09-07 23:16:01 -0700806 File cur = base;
807 for (String segment : segments) {
808 if (cur == null) {
809 cur = new File(segment);
810 } else {
811 cur = new File(cur, segment);
812 }
813 }
814 return cur;
815 }
Jeff Sharkey63d0a062013-03-01 16:12:55 -0800816
817 /**
818 * If the given path exists on emulated external storage, return the
819 * translated backing path hosted on internal storage. This bypasses any
820 * emulation later, improving performance. This is <em>only</em> suitable
821 * for read-only access.
822 * <p>
823 * Returns original path if given path doesn't meet these criteria. Callers
824 * must hold {@link android.Manifest.permission#WRITE_MEDIA_STORAGE}
825 * permission.
826 *
827 * @hide
828 */
829 public static File maybeTranslateEmulatedPathToInternal(File path) {
830 // Fast return if not emulated, or missing variables
831 if (!Environment.isExternalStorageEmulated()
832 || CANONCIAL_EMULATED_STORAGE_TARGET == null) {
833 return path;
834 }
835
836 try {
837 final String rawPath = path.getCanonicalPath();
838 if (rawPath.startsWith(CANONCIAL_EMULATED_STORAGE_TARGET)) {
839 final File internalPath = new File(DIR_MEDIA_STORAGE,
840 rawPath.substring(CANONCIAL_EMULATED_STORAGE_TARGET.length()));
841 if (internalPath.exists()) {
842 return internalPath;
843 }
844 }
845 } catch (IOException e) {
846 Log.w(TAG, "Failed to resolve canonical path for " + path);
847 }
848
849 // Unable to translate to internal path; use original
850 return path;
851 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800852}