私はすでに機能するコードを持っていますが、可能であれば実際に一時フォルダーを削除したくありません。私はapachefileutilsを使用しています。また、フォルダを削除から除外する方法を知っている人はいますか?
public class Cleartemp {
static String userprofile = System.getenv("USERPROFILE");
public static void main(String[] args) {
try {
File directory = new File(userprofile+"\\AppData\\Local\\Temp");
//
// Deletes a directory recursively. When deletion process is fail an
// IOException is thrown and that's why we catch the exception.
//
FileUtils.deleteDirectory(directory);
} catch (IOException e) {
e.printStackTrace();
}
}
}