Package | Description |
---|---|
net.java.truevfs.access |
Provides uniform, transparent, thread-safe, read/write access to archive
files as if they were virtual directories.
|
Modifier and Type | Method and Description |
---|---|
static void |
TFile.cp_r(File src,
File dst,
TArchiveDetector detector)
Equivalent to
cp_r(this, dst, detector, detector) . |
static void |
TFile.cp_r(File src,
File dst,
TArchiveDetector srcDetector,
TArchiveDetector dstDetector)
Recursively copies the file or directory
src
to the file or directory dst . |
static void |
TFile.cp_rp(File src,
File dst,
TArchiveDetector detector)
Equivalent to
cp_rp(this, dst, detector, detector) . |
static void |
TFile.cp_rp(File src,
File dst,
TArchiveDetector srcDetector,
TArchiveDetector dstDetector)
Recursively copies the file or directory
src to the file or
directory dst and attempts to copy all attributes of each
source file to the destination file, too. |
static void |
TFile.mv(File src,
File dst,
TArchiveDetector detector)
Moves the given source file or directory to the given destination file
or directory.
|
static void |
TVFS.sync(net.java.truecommons.shed.BitField<FsSyncOption> options)
Commits all pending changes for all (nested) archive files to their
respective parent file system with respect to the given options.
|
static void |
TVFS.sync(FsMountPoint tree,
net.java.truecommons.shed.BitField<FsSyncOption> options)
Commits all pending changes for all (nested) archive files within the
given (virtual) directory
tree to their respective parent file
system with respect to the given options. |
static void |
TVFS.sync(FsMountPoint tree,
FsSyncOption... options)
Commits all pending changes for all (nested) archive files within the
given (virtual) directory
tree to their respective parent file
system with respect to the given options. |
static void |
TVFS.sync(FsSyncOption... options)
Commits all pending changes for all (nested) archive files to their
respective parent file system with respect to the given options.
|
static void |
TVFS.sync(TFile tree,
net.java.truecommons.shed.BitField<FsSyncOption> options)
Commits all pending changes for all (nested) archive files within the
given (virtual) directory
tree to their respective parent file
system with respect to the given options. |
static void |
TVFS.sync(TFile tree,
FsSyncOption... options)
Commits all pending changes for all (nested) archive files within the
given (virtual) directory
tree to their respective parent file
system with respect to the given options. |
TFile |
TFile.toNonArchiveFile()
Returns a file object for the same path name, but does not detect any
archive file name patterns in the last path name segment.
|
TPath |
TPath.toNonArchivePath()
Returns a path object for the same path name, but does not detect any
archive file name patterns in the last path name segment.
|
Constructor and Description |
---|
TFile(File parent,
String child,
TArchiveDetector detector)
Constructs a new
TFile instance which uses the given archive
detector to scan its path name for prospective archive files. |
TFile(File file,
TArchiveDetector detector)
Constructs a new
TFile instance which uses the given archive
detector to scan its path name for prospective archive files. |
TFile(FsNodePath path,
TArchiveDetector detector)
Constructs a new
TFile instance for the given path and
detector . |
TFile(String parent,
String child,
TArchiveDetector detector)
Constructs a new
TFile instance which uses the given archive
detector to scan its path name for prospective archive files. |
TFile(String path,
TArchiveDetector detector)
Constructs a new
TFile instance which uses the given archive
detector to scan its path name for prospective archive files. |
TFile(URI uri,
TArchiveDetector detector)
Constructs a new
TFile instance for the given uri and
detector . |
Copyright © 2005–2018 Schlichtherle IT Services. All rights reserved.