| | |
| | | import java.io.InputStreamReader;
|
| | | import java.io.OutputStreamWriter;
|
| | | import java.nio.charset.Charset;
|
| | | import java.nio.file.Path;
|
| | | import java.nio.file.Paths;
|
| | |
|
| | | /**
|
| | | * Common file utilities.
|
| | | * |
| | | *
|
| | | * @author James Moger
|
| | | * |
| | | *
|
| | | */
|
| | | public class FileUtils {
|
| | | |
| | |
|
| | | /** 1024 (number of bytes in one kilobyte) */
|
| | | public static final int KB = 1024;
|
| | |
|
| | |
| | | /**
|
| | | * Returns an int from a string representation of a file size.
|
| | | * e.g. 50m = 50 megabytes
|
| | | * |
| | | *
|
| | | * @param aString
|
| | | * @param defaultValue
|
| | | * @return an int value or the defaultValue if aString can not be parsed
|
| | |
| | | public static int convertSizeToInt(String aString, int defaultValue) {
|
| | | return (int) convertSizeToLong(aString, defaultValue);
|
| | | }
|
| | | |
| | |
|
| | | /**
|
| | | * Returns a long from a string representation of a file size.
|
| | | * e.g. 50m = 50 megabytes
|
| | | * |
| | | *
|
| | | * @param aString
|
| | | * @param defaultValue
|
| | | * @return a long value or the defaultValue if aString can not be parsed
|
| | | */
|
| | | public static long convertSizeToLong(String aString, long defaultValue) {
|
| | | // trim string and remove all spaces |
| | | // trim string and remove all spaces
|
| | | aString = aString.toLowerCase().trim();
|
| | | StringBuilder sb = new StringBuilder();
|
| | | for (String a : aString.split(" ")) {
|
| | | sb.append(a);
|
| | | }
|
| | | aString = sb.toString();
|
| | | |
| | |
|
| | | // identify value and unit
|
| | | int idx = 0;
|
| | | int len = aString.length();
|
| | |
| | | }
|
| | | return defaultValue;
|
| | | }
|
| | | |
| | |
|
| | | /**
|
| | | * Returns the byte [] content of the specified file.
|
| | | * |
| | | *
|
| | | * @param file
|
| | | * @return the byte content of the file
|
| | | */
|
| | |
| | |
|
| | | /**
|
| | | * Returns the string content of the specified file.
|
| | | * |
| | | *
|
| | | * @param file
|
| | | * @param lineEnding
|
| | | * @return the string content of the file
|
| | |
| | | public static String readContent(File file, String lineEnding) {
|
| | | StringBuilder sb = new StringBuilder();
|
| | | InputStreamReader is = null;
|
| | | BufferedReader reader = null;
|
| | | try {
|
| | | is = new InputStreamReader(new FileInputStream(file), Charset.forName("UTF-8"));
|
| | | BufferedReader reader = new BufferedReader(is);
|
| | | reader = new BufferedReader(is);
|
| | | String line = null;
|
| | | while ((line = reader.readLine()) != null) {
|
| | | sb.append(line);
|
| | |
| | | System.err.println("Failed to read content of " + file.getAbsolutePath());
|
| | | t.printStackTrace();
|
| | | } finally {
|
| | | if (reader != null){
|
| | | try {
|
| | | reader.close();
|
| | | } catch (IOException ioe) {
|
| | | System.err.println("Failed to close file " + file.getAbsolutePath());
|
| | | ioe.printStackTrace();
|
| | | }
|
| | | }
|
| | | if (is != null) {
|
| | | try {
|
| | | is.close();
|
| | |
| | |
|
| | | /**
|
| | | * Writes the string content to the file.
|
| | | * |
| | | *
|
| | | * @param file
|
| | | * @param content
|
| | | */
|
| | |
| | | /**
|
| | | * Recursively traverses a folder and its subfolders to calculate the total
|
| | | * size in bytes.
|
| | | * |
| | | *
|
| | | * @param directory
|
| | | * @return folder size in bytes
|
| | | */
|
| | | public static long folderSize(File directory) {
|
| | | if (directory == null || !directory.exists()) {
|
| | | return -1;
|
| | | } |
| | | }
|
| | | if (directory.isDirectory()) {
|
| | | long length = 0;
|
| | | for (File file : directory.listFiles()) {
|
| | |
| | |
|
| | | /**
|
| | | * Copies a file or folder (recursively) to a destination folder.
|
| | | * |
| | | *
|
| | | * @param destinationFolder
|
| | | * @param filesOrFolders
|
| | | * @return
|
| | |
| | | }
|
| | | }
|
| | | }
|
| | | |
| | |
|
| | | /**
|
| | | * Determine the relative path between two files. Takes into account
|
| | | * canonical paths, if possible.
|
| | | * |
| | | *
|
| | | * @param basePath
|
| | | * @param path
|
| | | * @return a relative path from basePath to path
|
| | | */
|
| | | public static String getRelativePath(File basePath, File path) {
|
| | | File exactBase = getExactFile(basePath);
|
| | | File exactPath = getExactFile(path);
|
| | | if (path.getAbsolutePath().startsWith(basePath.getAbsolutePath())) {
|
| | | // absolute base-path match
|
| | | return StringUtils.getRelativePath(basePath.getAbsolutePath(), path.getAbsolutePath());
|
| | | } else if (exactPath.getPath().startsWith(exactBase.getPath())) {
|
| | | // canonical base-path match
|
| | | return StringUtils.getRelativePath(exactBase.getPath(), exactPath.getPath());
|
| | | } else if (exactPath.getPath().startsWith(basePath.getAbsolutePath())) {
|
| | | // mixed path match
|
| | | return StringUtils.getRelativePath(basePath.getAbsolutePath(), exactPath.getPath());
|
| | | } else if (path.getAbsolutePath().startsWith(exactBase.getPath())) {
|
| | | // mixed path match
|
| | | return StringUtils.getRelativePath(exactBase.getPath(), path.getAbsolutePath());
|
| | | Path exactBase = Paths.get(getExactFile(basePath).toURI());
|
| | | Path exactPath = Paths.get(getExactFile(path).toURI());
|
| | | if (exactPath.startsWith(exactBase)) {
|
| | | return exactBase.relativize(exactPath).toString().replace('\\', '/');
|
| | | }
|
| | | // no relative relationship
|
| | | return null;
|
| | | }
|
| | | |
| | |
|
| | | /**
|
| | | * Returns the exact path for a file. This path will be the canonical path
|
| | | * unless an exception is thrown in which case it will be the absolute path.
|
| | | * |
| | | *
|
| | | * @param path
|
| | | * @return the exact file
|
| | | */
|
| | |
| | |
|
| | | public static File resolveParameter(String parameter, File aFolder, String path) {
|
| | | if (aFolder == null) {
|
| | | // strip any parameter reference |
| | | // strip any parameter reference
|
| | | path = path.replace(parameter, "").trim();
|
| | | if (path.length() > 0 && path.charAt(0) == '/') {
|
| | | // strip leading /
|