我如何知道我的 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
}