Merge "Remove old FUSE bypass now that we have sdcardfs." into oc-dev
am: 6746aa8c4d
Change-Id: I6b78fba341499617e279b38f2e1885cd58551b0d
This commit is contained in:
@@ -1403,23 +1403,7 @@ public class StorageManager {
|
|||||||
|
|
||||||
/** {@hide} */
|
/** {@hide} */
|
||||||
public static File maybeTranslateEmulatedPathToInternal(File path) {
|
public static File maybeTranslateEmulatedPathToInternal(File path) {
|
||||||
final IStorageManager storageManager = IStorageManager.Stub.asInterface(
|
// Disabled now that FUSE has been replaced by sdcardfs
|
||||||
ServiceManager.getService("mount"));
|
|
||||||
try {
|
|
||||||
final VolumeInfo[] vols = storageManager.getVolumes(0);
|
|
||||||
for (VolumeInfo vol : vols) {
|
|
||||||
if ((vol.getType() == VolumeInfo.TYPE_EMULATED
|
|
||||||
|| vol.getType() == VolumeInfo.TYPE_PUBLIC) && vol.isMountedReadable()) {
|
|
||||||
final File internalPath = FileUtils.rewriteAfterRename(vol.getPath(),
|
|
||||||
vol.getInternalPath(), path);
|
|
||||||
if (internalPath != null && internalPath.exists()) {
|
|
||||||
return internalPath;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (RemoteException e) {
|
|
||||||
throw e.rethrowFromSystemServer();
|
|
||||||
}
|
|
||||||
return path;
|
return path;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user