public class FilePathNioMem extends FilePath
Constructor and Description |
---|
FilePathNioMem() |
Modifier and Type | Method and Description |
---|---|
boolean |
canWrite()
Check if the file is writable.
|
void |
createDirectory()
Create a directory (all required parent directories already exist).
|
boolean |
createFile()
Create a new file.
|
void |
delete()
Delete a file or directory if it exists.
|
boolean |
exists()
Checks if a file exists.
|
protected static String |
getCanonicalPath(String fileName)
Get the canonical path of a file (with backslashes replaced with forward
slashes).
|
FilePathNioMem |
getParent()
Get the parent directory of a file or directory.
|
FilePathNioMem |
getPath(String path)
Convert a file to a path.
|
String |
getScheme()
Get the scheme (prefix) for this file provider.
|
boolean |
isAbsolute()
Check if the file name includes a path.
|
boolean |
isDirectory()
Check if it is a file or a directory.
|
long |
lastModified()
Get the last modified date of a file
|
void |
moveTo(FilePath newName,
boolean atomicReplace)
Rename a file if this is allowed.
|
List<FilePath> |
newDirectoryStream()
List the files and directories in the given directory.
|
InputStream |
newInputStream()
Create an input stream to read from the file.
|
OutputStream |
newOutputStream(boolean append)
Create an output stream to write into the file.
|
FileChannel |
open(String mode)
Open a random access file object.
|
boolean |
setReadOnly()
Disable the ability to write.
|
long |
size()
Get the size of a file in bytes
|
FilePathNioMem |
toRealPath()
Normalize a file name.
|
createTempFile, get, getName, getNextTempFileNamePart, register, toString, unregister, unwrap
public FilePathNioMem getPath(String path)
FilePath
java.nio.file.spi.FileSystemProvider.getPath
, but may
return an object even if the scheme doesn't match in case of the the
default file provider.public long size()
FilePath
public void moveTo(FilePath newName, boolean atomicReplace)
FilePath
public boolean createFile()
FilePath
createFile
in class FilePath
public boolean exists()
FilePath
public void delete()
FilePath
public List<FilePath> newDirectoryStream()
FilePath
newDirectoryStream
in class FilePath
public boolean setReadOnly()
FilePath
setReadOnly
in class FilePath
public boolean canWrite()
FilePath
public FilePathNioMem getParent()
FilePath
public boolean isDirectory()
FilePath
isDirectory
in class FilePath
public boolean isAbsolute()
FilePath
isAbsolute
in class FilePath
public FilePathNioMem toRealPath()
FilePath
toRealPath
in class FilePath
public long lastModified()
FilePath
lastModified
in class FilePath
public void createDirectory()
FilePath
createDirectory
in class FilePath
public OutputStream newOutputStream(boolean append) throws IOException
FilePath
newOutputStream
in class FilePath
append
- if true, the file will grow, if false, the file will be
truncated firstIOException
public InputStream newInputStream()
FilePath
newInputStream
in class FilePath
public FileChannel open(String mode)
FilePath
protected static String getCanonicalPath(String fileName)
fileName
- the file nameCopyright © 2017 JBoss by Red Hat. All rights reserved.