Package com.castlabs.utils
Class FileHelper
- java.lang.Object
-
- com.castlabs.utils.FileHelper
-
public class FileHelper extends Object
The file helper contains utility functions to work with files and folders, including recursive listings, recursive deletes and file and folder copy.- Since:
- 2.0.0
-
-
Constructor Summary
Constructors Constructor Description FileHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
convertToLocalFilePath(Uri uri)
Converts remote URI to local file pathstatic void
copy(File sourceLocation, File targetLocation)
Copies files and directories.static String
decodeApid(String encodedApi)
Decodes the given apidstatic void
deleteRecursive(File fileOrDirectory)
Recursively delete the given file or directorystatic String
encodeApid(String apid)
Encodes teh given apidstatic String
encodeFileName(String fileName)
Remove illegal characters from file namesstatic List<File>
listFiles(File rootDir, FileFilter filter, boolean recursive)
List all the files in a given folder.static List<String>
readLines(File file)
-
-
-
Method Detail
-
encodeFileName
public static String encodeFileName(String fileName)
Remove illegal characters from file names- Parameters:
fileName
- the file name- Returns:
- the cleaned file name
-
listFiles
public static List<File> listFiles(File rootDir, FileFilter filter, boolean recursive)
List all the files in a given folder. If the root folder is not a directory or does not exists, an empty list is returned. If a file filter is given here, the filter is only applied to files in the result list. It is not used to filter folder during recursive search.- Parameters:
rootDir
- the root folderfilter
- the file filter applied to limit the results (optional)recursive
- if true, the folder is searched recursively- Returns:
- list of files in the given root folder
-
copy
public static void copy(File sourceLocation, File targetLocation) throws IOException
Copies files and directories.- Parameters:
sourceLocation
- the source file or directorytargetLocation
- the target- Throws:
IOException
- in case an error occurred
-
encodeApid
public static String encodeApid(String apid)
Encodes teh given apid- Parameters:
apid
- the apid- Returns:
- encoded apid
-
decodeApid
public static String decodeApid(String encodedApi)
Decodes the given apid- Parameters:
encodedApi
- the encoded apid- Returns:
- the decoded apid
-
deleteRecursive
public static void deleteRecursive(File fileOrDirectory)
Recursively delete the given file or directory- Parameters:
fileOrDirectory
- the file or directory
-
readLines
public static List<String> readLines(File file) throws IOException
- Parameters:
file
- the source file- Returns:
- list of lines of the given file
- Throws:
IOException
- in case of an error while reading the file- Since:
- 2.1.7
-
-