mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-04 16:35:08 -05:00
9d7af8bd96
* added FastFile, which minimizes fs calls by remembering the results * use File directly (and not the holder FileEntry) in RenamePanel
169 lines
3.2 KiB
Java
169 lines
3.2 KiB
Java
|
|
package net.sourceforge.tuned;
|
|
|
|
|
|
import java.io.File;
|
|
import java.io.FileFilter;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
|
|
public final class FileUtilities {
|
|
|
|
public static final long KILO = 1024;
|
|
public static final long MEGA = KILO * 1024;
|
|
public static final long GIGA = MEGA * 1024;
|
|
|
|
|
|
public static String formatSize(long size) {
|
|
if (size >= MEGA)
|
|
return String.format("%,d MB", size / MEGA);
|
|
else if (size >= KILO)
|
|
return String.format("%,d KB", size / KILO);
|
|
else
|
|
return String.format("%,d Byte", size);
|
|
}
|
|
|
|
|
|
public static String getExtension(File file) {
|
|
return getExtension(file.getName());
|
|
}
|
|
|
|
|
|
public static String getExtension(String name) {
|
|
int dotIndex = name.lastIndexOf(".");
|
|
|
|
// .hidden -> no extension, just hidden
|
|
if (dotIndex > 0 && dotIndex < name.length() - 1) {
|
|
return name.substring(dotIndex + 1);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
|
|
public static boolean hasExtension(File file, String... extensions) {
|
|
if (file.isDirectory())
|
|
return false;
|
|
|
|
return hasExtension(file.getName(), extensions);
|
|
}
|
|
|
|
|
|
public static boolean hasExtension(String filename, String... extensions) {
|
|
String extension = getExtension(filename);
|
|
|
|
if (extension != null) {
|
|
for (String entry : extensions) {
|
|
if (extension.equalsIgnoreCase(entry))
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
public static String getNameWithoutExtension(String name) {
|
|
int dotIndex = name.lastIndexOf(".");
|
|
|
|
if (dotIndex > 0)
|
|
return name.substring(0, dotIndex);
|
|
|
|
// no extension, return given name
|
|
return name;
|
|
}
|
|
|
|
|
|
public static String getName(File file) {
|
|
if (file.isDirectory())
|
|
return getFolderName(file);
|
|
|
|
return getNameWithoutExtension(file.getName());
|
|
}
|
|
|
|
|
|
public static String getFolderName(File file) {
|
|
String name = file.getName();
|
|
|
|
if (!name.isEmpty())
|
|
return name;
|
|
|
|
// file might be a drive (only has a path, but no name)
|
|
return file.toString();
|
|
}
|
|
|
|
|
|
public static boolean containsOnly(Iterable<File> files, FileFilter filter) {
|
|
for (File file : files) {
|
|
if (!filter.accept(file))
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
public static List<File> filter(Iterable<File> files, FileFilter... filters) {
|
|
List<File> accepted = new ArrayList<File>();
|
|
|
|
for (File file : files) {
|
|
for (FileFilter filter : filters) {
|
|
if (filter.accept(file)) {
|
|
accepted.add(file);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return accepted;
|
|
}
|
|
|
|
public static final FileFilter FOLDERS = new FileFilter() {
|
|
|
|
@Override
|
|
public boolean accept(File file) {
|
|
return file.isDirectory();
|
|
}
|
|
};
|
|
|
|
public static final FileFilter FILES = new FileFilter() {
|
|
|
|
@Override
|
|
public boolean accept(File file) {
|
|
return file.isFile();
|
|
}
|
|
};
|
|
|
|
|
|
public static class ExtensionFileFilter implements FileFilter {
|
|
|
|
private final String[] extensions;
|
|
|
|
|
|
public ExtensionFileFilter(String... extensions) {
|
|
this.extensions = extensions;
|
|
}
|
|
|
|
|
|
@Override
|
|
public boolean accept(File file) {
|
|
return hasExtension(file, extensions);
|
|
}
|
|
|
|
|
|
public String[] getExtensions() {
|
|
return extensions.clone();
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Dummy constructor to prevent instantiation.
|
|
*/
|
|
private FileUtilities() {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
}
|