public enum FileSystem extends java.lang.Enum<FileSystem>
toLegalFileName(String, char)
.
The starting point of any operation is getCurrent()
which gets you the enum for the file system that matches
the OS hosting the running JVM.
Enum Constant and Description |
---|
GENERIC
Generic file system.
|
LINUX
Linux file system.
|
MAC_OSX
MacOS file system.
|
WINDOWS
Windows file system.
|
Modifier and Type | Method and Description |
---|---|
int |
getBlockSize()
Gets the file allocation block size in bytes.
|
static FileSystem |
getCurrent()
Gets the current file system.
|
char[] |
getIllegalFileNameChars()
Gets a cloned copy of the illegal characters for this file system.
|
int[] |
getIllegalFileNameCodePoints()
Gets a cloned copy of the illegal code points for this file system.
|
int |
getMaxFileNameLength()
Gets the maximum length for file names.
|
int |
getMaxPathLength()
Gets the maximum length of the path to a file.
|
char |
getNameSeparator()
Gets the name separator, '\\' on Windows, '/' on Linux.
|
java.lang.String[] |
getReservedFileNames()
Gets a cloned copy of the reserved file names.
|
boolean |
isCasePreserving()
Tests whether this file system preserves case.
|
boolean |
isCaseSensitive()
Tests whether this file system is case-sensitive.
|
boolean |
isLegalFileName(java.lang.CharSequence candidate)
Tests if a candidate file name (without a path) such as
"filename.ext" or "filename" is a
potentially legal file name. |
boolean |
isReservedFileName(java.lang.CharSequence candidate)
Tests whether the given string is a reserved file name.
|
java.lang.String |
normalizeSeparators(java.lang.String path)
Converts all separators to the Windows separator of backslash.
|
boolean |
supportsDriveLetter()
Tests whether this file system support driver letters.
|
java.lang.String |
toLegalFileName(java.lang.String candidate,
char replacement)
Converts a candidate file name (without a path) like
"filename.ext" or "filename" to a legal file
name. |
static FileSystem |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileSystem GENERIC
public static final FileSystem LINUX
public static final FileSystem MAC_OSX
public static final FileSystem WINDOWS
The reserved characters are defined in the Naming Conventions (microsoft.com).
public static FileSystem[] values()
for (FileSystem c : FileSystem.values()) System.out.println(c);
public static FileSystem valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static FileSystem getCurrent()
public int getBlockSize()
public char[] getIllegalFileNameChars()
public int[] getIllegalFileNameCodePoints()
public int getMaxFileNameLength()
public int getMaxPathLength()
public char getNameSeparator()
public java.lang.String[] getReservedFileNames()
public boolean isCasePreserving()
public boolean isCaseSensitive()
public boolean isLegalFileName(java.lang.CharSequence candidate)
"filename.ext"
or "filename"
is a
potentially legal file name. If the file name length exceeds getMaxFileNameLength()
, or if it contains
an illegal character then the check fails.candidate
- a candidate file name (without a path) like "filename.ext"
or "filename"
true
if the candidate name is legalpublic boolean isReservedFileName(java.lang.CharSequence candidate)
candidate
- the string to testtrue
if the given string is a reserved file name.public java.lang.String normalizeSeparators(java.lang.String path)
path
- the path to be changed, null ignoredpublic boolean supportsDriveLetter()
Windows supports driver letters as do other operating systems. Whether these other OS's still support Java like OS/2, is a different matter.
public java.lang.String toLegalFileName(java.lang.String candidate, char replacement)
"filename.ext"
or "filename"
to a legal file
name. Illegal characters in the candidate name are replaced by the replacement
character. If the file
name length exceeds getMaxFileNameLength()
, then the name is truncated to
getMaxFileNameLength()
.candidate
- a candidate file name (without a path) like "filename.ext"
or "filename"
replacement
- Illegal characters in the candidate name are replaced by this characterCopyright © 2010 - 2023 Adobe. All Rights Reserved