All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.logz.sender.com.bluejeans.common.bigqueue.FileUtil Maven / Gradle / Ivy

package com.bluejeans.common.bigqueue;

import java.io.File;
import java.io.IOException;

class FileUtil {

    /**
     * Only check if a given filename is valid according to the OS rules.
     *
     * You still need to handle other failures when actually creating
     * the file (e.g. insufficient permissions, lack of drive space, security restrictions).
     * @param file the name of a file
     * @return true if the file is valid, false otherwise
     */
    public static boolean isFilenameValid(final String file) {
        final File f = new File(file);
        try {
            f.getCanonicalPath();
            return true;
        }
        catch (final IOException e) {
            return false;
        }
    }

    public static void deleteDirectory(final File dir) {
        if (!dir.exists())
            return;
        final File[] subs = dir.listFiles();
        if (subs != null)
            for (final File f : dir.listFiles())
                if (f.isFile()) {
                    if (!f.delete())
                        throw new IllegalStateException("delete file failed: " + f);
                }
                else
                    deleteDirectory(f);
        if (!dir.delete())
            throw new IllegalStateException("delete directory failed: " + dir);
    }

    public static void deleteFile(final File file) {
        if (!file.exists() || !file.isFile())
            return;
        if (!file.delete())
            throw new IllegalStateException("delete file failed: " + file);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy