|
TrueZIP 6.8 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use File | |
|---|---|
| de.schlichtherle.io | Provides transparent, multi-threaded read/write access to archive files (ZIP, TAR, etc) and their entries as if they were (virtual) directories and files. |
| de.schlichtherle.io.swing |
Provides random read only access to files
(as opposed to the random read/write access provided by
RandomAccessFile). |
| de.schlichtherle.io.swing.tree |
Support classes for the package de.schlichtherle.io.swing. |
| Uses of File in de.schlichtherle.io |
|---|
| Methods in de.schlichtherle.io that return File | |
|---|---|
File |
FileFactory.createFile(File blueprint)
|
File |
ArchiveDetector.createFile(File blueprint)
Constructs a new File instance from the given
blueprint. |
File |
AbstractArchiveDetector.createFile(File template)
|
File |
FileFactory.createFile(File delegate,
File innerArchive)
|
File |
ArchiveDetector.createFile(File delegate,
File innerArchive)
This factory method is not for public use - do not use it! |
File |
AbstractArchiveDetector.createFile(File delegate,
File innerArchive)
|
File |
FileFactory.createFile(File blueprint,
File delegate,
File enclArchive)
|
File |
ArchiveDetector.createFile(File blueprint,
File delegate,
File enclArchive)
This factory method is not for public use - do not use it! |
File |
AbstractArchiveDetector.createFile(File template,
File delegate,
File enclArchive)
|
File |
FileFactory.createFile(File parent,
String child)
|
File |
ArchiveDetector.createFile(File parent,
String child)
Constructs a new File instance which uses this
ArchiveDetector to detect any archive files in its pathname. |
File |
AbstractArchiveDetector.createFile(File parent,
String child)
|
File |
FileFactory.createFile(String path)
|
File |
ArchiveDetector.createFile(String path)
Constructs a new File instance which uses this
ArchiveDetector to detect any archive files in its pathname. |
File |
AbstractArchiveDetector.createFile(String pathName)
|
File |
FileFactory.createFile(String parent,
String child)
|
File |
ArchiveDetector.createFile(String parent,
String child)
Constructs a new File instance which uses this
ArchiveDetector to detect any archive files in its pathname. |
File |
AbstractArchiveDetector.createFile(String parent,
String child)
|
File |
FileFactory.createFile(URI uri)
|
File |
ArchiveDetector.createFile(URI uri)
Constructs a new File instance from the given
uri. |
File |
AbstractArchiveDetector.createFile(URI uri)
|
File |
File.getCanOrAbsFile()
This convenience method simply returns the canonical form of this abstract path or the normalized absolute form if resolving the prior fails. |
File |
File.getEnclArchive()
Returns the enclosing archive file in this path. |
File |
File.getInnerArchive()
Returns the innermost archive file in this path. |
File |
File.getNonArchivedParentFile()
Returns the first parent directory (starting from this file) which is not an archive file or a file located in an archive file. |
File |
File.getNormalizedAbsoluteFile()
Similar to getAbsoluteFile(), but removes any
"." and ".." directories
from the path wherever possible. |
File |
File.getNormalizedFile()
Removes any "." and ".." |
File |
File.getTopLevelArchive()
Returns The top level archive file in the path or null
if this path does not denote an archive. |
File[] |
File.listFiles(FileFactory factory)
Returns File objects for the members in this directory
in a newly created array. |
File[] |
File.listFiles(FileFilter fileFilter,
FileFactory factory)
Returns File objects for the members in this directory
which are accepted by fileFilter in a newly created array. |
File[] |
File.listFiles(FilenameFilter filenameFilter,
FileFactory factory)
Returns File objects for the members in this directory
which are accepted by filenameFilter in a newly created
array. |
| Methods in de.schlichtherle.io with parameters of type File | |
|---|---|
File |
FileFactory.createFile(File delegate,
File innerArchive)
|
File |
ArchiveDetector.createFile(File delegate,
File innerArchive)
This factory method is not for public use - do not use it! |
File |
AbstractArchiveDetector.createFile(File delegate,
File innerArchive)
|
File |
FileFactory.createFile(File blueprint,
File delegate,
File enclArchive)
|
File |
ArchiveDetector.createFile(File blueprint,
File delegate,
File enclArchive)
This factory method is not for public use - do not use it! |
File |
AbstractArchiveDetector.createFile(File template,
File delegate,
File enclArchive)
|
static void |
File.umount(File archive)
Equivalent to umount(archive, false, true, false, true). |
static void |
File.umount(File archive,
boolean closeStreams)
Equivalent to umount(archive, false, closeStreams, false, closeStreams). |
static void |
File.umount(File archive,
boolean waitInputStreams,
boolean closeInputStreams,
boolean waitOutputStreams,
boolean closeOutputStreams)
Similar to umount(waitInputStreams, closeInputStreams, waitOutputStreams, closeOutputStreams),
but will only update the given archive and all its enclosed
(nested) archives. |
static void |
File.update(File archive)
Equivalent to update(archive, false, true, false, true). |
static void |
File.update(File archive,
boolean closeStreams)
Equivalent to update(archive, false, closeStreams, false, closeStreams). |
static void |
File.update(File archive,
boolean waitInputStreams,
boolean closeInputStreams,
boolean waitOutputStreams,
boolean closeOutputStreams)
Similar to update(waitInputStreams, closeInputStreams, waitOutputStreams, closeOutputStreams),
but will only update the given archive and all its enclosed
(nested) archives. |
| Constructors in de.schlichtherle.io with parameters of type File | |
|---|---|
File(File delegate,
File innerArchive,
ArchiveDetector detector)
Deprecated. This constructor is not for public use - do not use it! |
|
File(File template,
File delegate,
File enclArchive)
Deprecated. This constructor is not for public use - do not use it! |
|
FileReader(File file)
|
|
FileWriter(File file)
|
|
FileWriter(File file,
boolean append)
|
|
| Uses of File in de.schlichtherle.io.swing |
|---|
| Methods in de.schlichtherle.io.swing that return File | |
|---|---|
protected File |
FileSystemView.wrap(File file)
Wraps the given file in an archive enabled file. |
| Methods in de.schlichtherle.io.swing with parameters of type File | |
|---|---|
boolean |
JFileTree.archiveCopyAllTo(File oldNode,
File node)
Forwards the call to the FileTreeModel
and scrolls the tree so that the recursively copied node
is selected and visible. |
boolean |
JFileTree.archiveCopyTo(File oldNode,
File node)
Forwards the call to the FileTreeModel
and scrolls the tree so that the copied node
is selected and visible. |
boolean |
JFileTree.copyAllTo(File oldNode,
File node)
Forwards the call to the FileTreeModel
and scrolls the tree so that the recursively copied node
is selected and visible. |
boolean |
JFileTree.copyFrom(File node,
InputStream in)
Forwards the call to the FileTreeModel
and scrolls the tree so that the copied node
is selected and visible. |
boolean |
JFileTree.copyTo(File oldNode,
File node)
Forwards the call to the FileTreeModel
and scrolls the tree so that the copied node
is selected and visible. |
boolean |
JFileTree.deleteAll(File node)
Forwards the call to the FileTreeModel
and scrolls the tree so that the successor to the deleted node
is selected and visible. |
| Uses of File in de.schlichtherle.io.swing.tree |
|---|
| Methods in de.schlichtherle.io.swing.tree with parameters of type File | |
|---|---|
boolean |
FileTreeModel.archiveCopyAllTo(File oldNode,
File node)
Copies oldNode to node recursively, preserving
its last modification time
and updates the tree accordingly. |
boolean |
FileTreeModel.archiveCopyTo(File oldNode,
File node)
Copies oldNode to node, preserving
its last modification time
and updates the tree accordingly. |
boolean |
FileTreeModel.copyAllTo(File oldNode,
File node)
Copies oldNode to node recursively
and updates the tree accordingly. |
boolean |
FileTreeModel.copyFrom(File node,
InputStream in)
Creates node as a new file with the contents read from
in and updates the tree accordingly. |
boolean |
FileTreeModel.copyTo(File oldNode,
File node)
Copies oldNode to node
and updates the tree accordingly. |
boolean |
FileTreeModel.deleteAll(File node)
Deletes the file or (probably not empty) directory node
and updates the tree accordingly. |
|
TrueZIP 6.8 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||