0
我如何知道一個文件是否可以被我的android應用程序刪除?如何檢查是否可以通過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
}