0
我正在研究做一些文件處理的黑莓應用程序,我想知道如何檢查特定的文件夾並只刪除具有特定擴展名的文件。例如,我只想刪除我的.log文件。BlackBerry FileIO:刪除具有特定擴展名的文件
我正在研究做一些文件處理的黑莓應用程序,我想知道如何檢查特定的文件夾並只刪除具有特定擴展名的文件。例如,我只想刪除我的.log文件。BlackBerry FileIO:刪除具有特定擴展名的文件
請花一些時間研究FileConnection API。它擁有你需要的一切。
FileConnection dir = (FileConnection) Connector.open(path);
Enumeration dirContent = dir.list("*.*", true);
FileConnection file = (FileConnection) Connector.open(filePath);
if (file.exists()) {
file.delete();
}