0

我如何知道我的 android 应用程序是否可以删除文件?

我正在编写一个 android 应用程序和一个 web 应用程序,它允许我的客户查看和删除他们的文件。但我不会让客户端查看不可删除的文件。

喜欢

if(isFileCanBeDeleted("filename.ext"))
{
  //save the filename and path to server
}
else
{
   //the file is cannot be deleted, this filename will not be saved online
}
4

1 回答 1

-1

您可以通过执行shell命令来尝试,

Runtime.getRuntime().exec("test -e " + "/path/to/file.txt");

但是,您需要检查 API 引用是否可用,具体取决于 API 级别或 root/非 root 电话。

于 2012-10-22T00:55:21.670 回答