8

事情应该很简单,但在大多数情况下,在 Android 中并非如此。如果用户在我的应用程序中选择该选项,我需要格式化 SD 卡。如果它已经在操作系统中,不要问我为什么需要这样做......不切实际,但这是我需要实现的要求。您可能知道,在Settings \ Storage \ Erase SD Card中有一个选项。我查看了 froyo 源代码,它类似于:

final IMountService service =
         IMountService.Stub.asInterface(ServiceManager.getService("mount"));
        if (service != null) {
            new Thread() {
                public void run() {
                try {
                        service.formatVolume(Environment.getExternalStorageDirectory().toString());
                    } catch (Exception e) {
                        // Intentionally blank - there's nothing we can do here
                    Log.w("MediaFormat", "Unable to invoke IMountService.formatMedia()");
                    }
                }
            }.start();
        } else {
            Log.w("MediaFormat", "Unable to locate IMountService");
        }

它使用android.os.storage.IMountService并且android.os.ServiceManager我似乎无法访问它。因此,正如我所见,我可以递归地搜索每个文件并将其删除,但这“不合我的口味”......或者我可以从擦除 SD 卡开始屏幕给用户。

任何帮助都更受欢迎,因为我被困住了。

4

2 回答 2

4

我在这里找不到关于 SO 的问题,但它有一个可行的解决方案。所以所有的功劳都归功于那个人;)

public void wipeMemoryCard() {
        File deleteMatchingFile = new File(Environment
                .getExternalStorageDirectory().toString());
        try {
            File[] filenames = deleteMatchingFile.listFiles();
            if (filenames != null && filenames.length > 0) {
                for (File tempFile : filenames) {
                    if (tempFile.isDirectory()) {
                        wipeDirectory(tempFile.toString());
                        tempFile.delete();
                    } else {
                        tempFile.delete();
                    }
                }
            } else {
                deleteMatchingFile.delete();
            }
        } catch (Exception e) {
            Utils.log(e.getMessage());
        }
    }

    private static void wipeDirectory(String name) {
        File directoryFile = new File(name);
        File[] filenames = directoryFile.listFiles();
        if (filenames != null && filenames.length > 0) {
            for (File tempFile : filenames) {
                if (tempFile.isDirectory()) {
                    wipeDirectory(tempFile.toString());
                    tempFile.delete();
                } else {
                    tempFile.delete();
                }
            }
        } else {
            directoryFile.delete();
        }
    }
于 2011-09-15T17:17:40.193 回答
4

首先,我认为您可能需要.android_secure在格式化 SD 卡之前卸载文件系统,无论您采用何种方法。

然后,

尝试在您的应用中包含以下权限:

1) MOUNT_FORMAT_FILESYSTEMS- http://developer.android.com/reference/android/Manifest.permission.html#MOUNT_FORMAT_FILESYSTEMS

2) MOUNT_UNMOUNT_FILESYSTEMS- http://developer.android.com/reference/android/Manifest.permission.html#MOUNT_UNMOUNT_FILESYSTEMS

Android 设置应用程序已使用第二个权限。

==================================================== ===============================

当您执行 AOSP 或任何其他分发代码的构建时,会自动生成 IMountService.java 文件。它包含以下函数,它实际上将格式化命令发送到我猜的vold守护进程:

private static class Proxy implements android.os.storage.IMountService
{
  private android.os.IBinder mRemote;
  Proxy(android.os.IBinder remote)
  {
    mRemote = remote;
  }

  public android.os.IBinder asBinder()
  {
    return mRemote;
  }

  // **** A LOT OF OTHER CODE IS HERE.....

  public int formatVolume(java.lang.String mountPoint) throws android.os.RemoteException
  {
    android.os.Parcel _data = android.os.Parcel.obtain();
    android.os.Parcel _reply = android.os.Parcel.obtain();
    int _result;
    try {
      _data.writeInterfaceToken(DESCRIPTOR);
      _data.writeString(mountPoint);
      mRemote.transact(Stub.TRANSACTION_formatVolume, _data, _reply, 0);
      _reply.readException();
      _result = _reply.readInt();
    }
    finally {
      _reply.recycle();
      _data.recycle();
    }
    return _result;
  }
}
于 2011-09-13T16:39:22.957 回答