Here you can find the source of deleteFiles(File directory, String prefix)
Parameter | Description |
---|---|
directory | Directory which contains files to delete. |
prefix | Prefix for matching files to delete. |
public static void deleteFiles(File directory, String prefix)
//package com.java2s; /*//from www .j a va2 s . c o m * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import java.io.File; public class Main { /** * Delete all the files and sub directories which matches given prefix in a given directory. * * @param directory Directory which contains files to delete. * @param prefix Prefix for matching files to delete. */ public static void deleteFiles(File directory, String prefix) { if (directory.isDirectory()) { for (File f : directory.listFiles()) { if (f.getName().startsWith(prefix)) { deleteDirectory(f); } } } } /** * Delete the given directory along with all files and sub directories. * * @param directory Directory to delete. */ public static boolean deleteDirectory(File directory) { if (directory.isDirectory()) { for (File f : directory.listFiles()) { boolean success = deleteDirectory(f); if (!success) { return false; } } } return directory.delete(); } }