2009-01-24 19:08:57 -05:00
|
|
|
|
|
|
|
package net.sourceforge.tuned;
|
|
|
|
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileFilter;
|
2009-02-03 15:36:57 -05:00
|
|
|
import java.util.ArrayList;
|
2009-06-19 18:35:39 -04:00
|
|
|
import java.util.Collection;
|
2009-02-03 15:36:57 -05:00
|
|
|
import java.util.List;
|
2009-07-26 12:54:24 -04:00
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
2009-01-24 19:08:57 -05:00
|
|
|
|
|
|
|
|
|
|
|
public final class FileUtilities {
|
|
|
|
|
2009-07-26 12:54:24 -04:00
|
|
|
/**
|
|
|
|
* Pattern used for matching file extensions.
|
|
|
|
*
|
|
|
|
* e.g. "file.txt" -> match "txt", ".hidden" -> no match
|
|
|
|
*/
|
2009-08-10 07:46:24 -04:00
|
|
|
public static final Pattern EXTENSION = Pattern.compile("(?<=.[.])\\p{Alnum}+$");
|
2009-07-26 12:54:24 -04:00
|
|
|
|
|
|
|
|
2009-01-24 19:08:57 -05:00
|
|
|
public static String getExtension(File file) {
|
2009-04-07 14:33:05 -04:00
|
|
|
if (file.isDirectory())
|
|
|
|
return null;
|
|
|
|
|
2009-01-24 19:08:57 -05:00
|
|
|
return getExtension(file.getName());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static String getExtension(String name) {
|
2009-08-10 07:46:24 -04:00
|
|
|
Matcher matcher = EXTENSION.matcher(name);
|
2009-01-24 19:08:57 -05:00
|
|
|
|
2009-07-26 12:54:24 -04:00
|
|
|
if (matcher.find()) {
|
|
|
|
// extension without leading '.'
|
|
|
|
return matcher.group();
|
2009-01-24 19:08:57 -05:00
|
|
|
}
|
|
|
|
|
2009-07-26 12:54:24 -04:00
|
|
|
// no extension
|
2009-01-24 19:08:57 -05:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static boolean hasExtension(File file, String... extensions) {
|
2009-08-10 07:46:24 -04:00
|
|
|
// avoid native call for speed, if possible
|
|
|
|
return hasExtension(file.getName(), extensions) && !file.isDirectory();
|
2009-01-24 19:08:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static boolean hasExtension(String filename, String... extensions) {
|
|
|
|
String extension = getExtension(filename);
|
|
|
|
|
2009-08-10 07:46:24 -04:00
|
|
|
for (String value : extensions) {
|
|
|
|
if ((extension == null && value == null) || (extension != null && extension.equalsIgnoreCase(value)))
|
|
|
|
return true;
|
2009-01-24 19:08:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static String getNameWithoutExtension(String name) {
|
2009-08-10 07:46:24 -04:00
|
|
|
Matcher matcher = EXTENSION.matcher(name);
|
2009-01-24 19:08:57 -05:00
|
|
|
|
2009-07-26 12:54:24 -04:00
|
|
|
if (matcher.find()) {
|
|
|
|
return name.substring(0, matcher.start() - 1);
|
|
|
|
}
|
2009-01-24 19:08:57 -05:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2009-02-03 15:36:57 -05:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2009-06-13 05:53:48 -04:00
|
|
|
|
2009-08-10 07:46:24 -04:00
|
|
|
/**
|
|
|
|
* Invalid filename characters: \, /, :, *, ?, ", <, >, |, \r and \n
|
|
|
|
*/
|
|
|
|
public static final Pattern ILLEGAL_CHARACTERS = Pattern.compile("[\\\\/:*?\"<>|\\r\\n]");
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Strip filename of invalid characters
|
|
|
|
*
|
|
|
|
* @param filename original filename
|
|
|
|
* @return valid filename stripped of invalid characters
|
|
|
|
*/
|
|
|
|
public static String validateFileName(CharSequence filename) {
|
|
|
|
// strip invalid characters from filename
|
|
|
|
return ILLEGAL_CHARACTERS.matcher(filename).replaceAll("");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static boolean isInvalidFileName(CharSequence filename) {
|
|
|
|
return ILLEGAL_CHARACTERS.matcher(filename).find();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-24 19:08:57 -05:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-06-13 05:53:48 -04:00
|
|
|
|
2009-01-24 19:08:57 -05:00
|
|
|
public static class ExtensionFileFilter implements FileFilter {
|
|
|
|
|
|
|
|
private final String[] extensions;
|
|
|
|
|
2009-06-13 05:53:48 -04:00
|
|
|
|
2009-01-24 19:08:57 -05:00
|
|
|
public ExtensionFileFilter(String... extensions) {
|
|
|
|
this.extensions = extensions;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-19 18:35:39 -04:00
|
|
|
public ExtensionFileFilter(Collection<String> extensions) {
|
|
|
|
this.extensions = extensions.toArray(new String[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-24 19:08:57 -05:00
|
|
|
@Override
|
|
|
|
public boolean accept(File file) {
|
|
|
|
return hasExtension(file, extensions);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-13 05:53:48 -04:00
|
|
|
public boolean accept(String name) {
|
|
|
|
return hasExtension(name, extensions);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-30 08:57:09 -04:00
|
|
|
public boolean acceptExtension(String extension) {
|
|
|
|
for (String other : extensions) {
|
|
|
|
if (other.equalsIgnoreCase(extension))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-10 07:46:24 -04:00
|
|
|
public String[] extensions() {
|
|
|
|
return extensions.clone();
|
2009-01-24 19:08:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-13 05:53:48 -04:00
|
|
|
|
2009-01-24 19:08:57 -05:00
|
|
|
/**
|
|
|
|
* Dummy constructor to prevent instantiation.
|
|
|
|
*/
|
|
|
|
private FileUtilities() {
|
|
|
|
throw new UnsupportedOperationException();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|