|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.opencms.util.CmsFileUtil
public final class CmsFileUtil
Provides File utility functions.
| Method Summary | |
|---|---|
static void |
checkResources(CmsObject cms,
List resources)
Checks if all resources are present. |
static void |
copy(String fromFile,
String toFile)
Simply version of a 1:1 binary file copy. |
static String |
formatFilesize(long filesize,
Locale locale)
Returns the formatted filesize to Bytes, KB, MB or GB depending on the given value. |
static String |
formatResourceNames(CmsRequestContext context,
List resources)
Returns a comma separated list of resource paths names, with the site root from the given OpenCms user context removed. |
static String |
getFileExtension(String filename)
Returns the extension of the given file name, that is the part behind the last '.' char, converted to lower case letters. |
static List |
getFiles(String name,
FileFilter filter,
boolean includeSubtree)
Returns a list of all filtered files in the RFS. |
static String |
getRepositoryName(String repository,
String vfspath,
boolean online)
Returns the file name for a given VFS name that has to be written to a repository in the "real" file system, by appending the VFS root path to the given base repository path, also adding an folder for the "online" or "offline" project. |
static String |
getResourcePathFromClassloader(String fileName)
Returns the absolute path name for the given relative path name if it was found by the context Classloader of the current Thread. |
static String |
getRfsPath(String filename,
String extension,
String parameters)
Creates unique, valid RFS name for the given filename that contains a coded version of the given parameters, with the given file extension appended. |
static String |
normalizePath(String path)
Normalizes a file path that might contain '../' or './' or '//'
elements to a normal absolute path, the path separator char used is File.separatorChar. |
static String |
normalizePath(String path,
char separatorChar)
Normalizes a file path that might contain '../' or './' or '//'
elements to a normal absolute path. |
static String |
normalizePath(URL url)
Returns the normalized file path created from the given URL. |
static String |
normalizePath(URL url,
char separatorChar)
Returns the normalized file path created from the given URL. |
static void |
purgeDirectory(File directory)
Deletes a directory in the file system and all subfolders of that directory. |
static byte[] |
readFile(File file)
Reads a file from the RFS and returns the file content. |
static byte[] |
readFile(String filename)
Reads a file with the given name from the class loader and returns the file content. |
static String |
readFile(String filename,
String encoding)
Reads a file from the class loader and converts it to a String with the specified encoding. |
static byte[] |
readFully(InputStream in)
Reads all bytes from the given input stream and returns the result in an array. |
static byte[] |
readFully(InputStream in,
int size)
Reads the specified number of bytes from the given input stream and returns the result in an array. |
static List |
removeRedundancies(List resourcenames)
Removes all resource names in the given List that are "redundant" because the parent folder name is also contained in the List. |
static List |
removeRedundantResources(List resources)
Removes all resources in the given List that are "redundant" because the parent folder is also contained in the List. |
static String |
searchWebInfFolder(String startFolder)
Searches for the OpenCms web application 'WEB-INF' folder during system startup, code or null if the 'WEB-INF' folder can not be found. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public static void checkResources(CmsObject cms,
List resources)
throws CmsIllegalArgumentException
cms - an initialized OpenCms user context which must have read access to all resourcesresources - a list of vfs resource names to check
CmsIllegalArgumentException - in case not all resources exist or can be read with the given OpenCms user context
public static void copy(String fromFile,
String toFile)
throws IOException
fromFile - the name of the file to copytoFile - the name of the target file
IOException - if any IO error occurs during the copy operation
public static String formatFilesize(long filesize,
Locale locale)
filesize - in byteslocale - the locale of the current OpenCms user or the System's default locale if the first choice
is not at hand.
public static String formatResourceNames(CmsRequestContext context,
List resources)
context - the current users OpenCms context (optional, may be null)resources - a List of CmsResource instances to get the names from
public static String getFileExtension(String filename)
The result does contain the '.' char. For example, if the input is "opencms.html",
then the result will be ".html".
If the given file name does not contain a '.' char, the empty String "" is returned.
Please note: No check is performed to ensure the given file name is not null.
filename - the file name to get the extension for
public static List getFiles(String name,
FileFilter filter,
boolean includeSubtree)
If the name is not a folder the folder that contains the
given file will be used instead.
Despite the filter may not accept folders, every subfolder is traversed
if the includeSubtree parameter is set.
name - a folder or file namefilter - a filterincludeSubtree - if to include subfolders
File objects
public static String getRepositoryName(String repository,
String vfspath,
boolean online)
repository - the base repository pathvfspath - the VFS root path to write to useonline - flag indicates if the result should be used for the online project (true) or not
public static String getResourcePathFromClassloader(String fileName)
The argument has to denote a resource within the Classloaders
scope. A implementation for example would
try to match a given path name to some resource under it's URL
entries.URLClassLoader
As the result is internally obtained as an URL it is reduced to
a file path by the call to . Therefore
the returned String will start with a '/' (no problem for java.io).URL.getFile()
fileName - the filename to return the path from the Classloader for
Thread.getContextClassLoader()
public static String getRfsPath(String filename,
String extension,
String parameters)
This is used to create file names for the static export, or in a vfs disk cache.
filename - the base file nameextension - the extension to useparameters - the parameters to code in the result file name
CmsStaticExportManagerpublic static String normalizePath(String path)
'../' or './' or '//'
elements to a normal absolute path, the path separator char used is File.separatorChar.
path - the path to normalize
normalizePath(String, char)
public static String normalizePath(String path,
char separatorChar)
'../' or './' or '//'
elements to a normal absolute path.
Can also handle Windows like path information containing a drive letter,
like C:\path\..\.
path - the path to normalizeseparatorChar - the file separator char to use, for example File.separatorChar
public static String normalizePath(URL url)
The path part URL.getPath() is used, unescaped and
normalized using normalizePath(String, char) using File.separatorChar.
url - the URL to extract the path information from
File.separatorCharnormalizePath(URL, char)
public static String normalizePath(URL url,
char separatorChar)
The path part URL.getPath() is used, unescaped and
normalized using normalizePath(String, char).
url - the URL to extract the path information fromseparatorChar - the file separator char to use, for example File.separatorChar
public static void purgeDirectory(File directory)
directory - the directory to delete
public static byte[] readFile(File file)
throws IOException
file - the file to read
IOException - in case of file access errors
public static byte[] readFile(String filename)
throws IOException
filename - the file to read
IOException - in case of file access errors
public static String readFile(String filename,
String encoding)
throws IOException
filename - the file to readencoding - the encoding to use when converting the file content to a String
IOException - in case of file access errors
public static byte[] readFully(InputStream in)
throws IOException
in - the input stream to read the bytes from
IOException - in case of errors in the underlying java.io methods used
public static byte[] readFully(InputStream in,
int size)
throws IOException
in - the input stream to read the bytes fromsize - the number of bytes to read
IOException - in case of errors in the underlying java.io methods usedpublic static List removeRedundancies(List resourcenames)
The content of the input list is not modified.
resourcenames - a list of VFS pathnames to check for redundencies (Strings)
removeRedundantResources(List)public static List removeRedundantResources(List resources)
The content of the input list is not modified.
resources - a list of CmsResource objects to check for redundencies
removeRedundancies(List)public static String searchWebInfFolder(String startFolder)
null if the 'WEB-INF' folder can not be found.
startFolder - the folder where to start searching
null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||