| Modifier and Type | Field and Description |
|---|---|
static String |
LOCK_DIR
Directory specified by
gate.creole.annic.apache.lucene.lockdir
or java.io.tmpdir system property |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Closes the store to future operations.
|
OutputStream |
createFile(String name)
Creates a new, empty file in the directory with the given name.
|
void |
deleteFile(String name)
Removes an existing file in the directory.
|
boolean |
fileExists(String name)
Returns true iff a file with the given name exists.
|
long |
fileLength(String name)
Returns the length in bytes of a file in the directory.
|
static long |
fileModified(File directory,
String name)
Returns the time the named file was last modified.
|
long |
fileModified(String name)
Returns the time the named file was last modified.
|
static FSDirectory |
getDirectory(File file,
boolean create)
Returns the directory instance for the named location.
|
static FSDirectory |
getDirectory(String path,
boolean create)
Returns the directory instance for the named location.
|
File |
getFile() |
String[] |
list()
Returns an array of strings, one for each file in the directory.
|
Lock |
makeLock(String name)
Constructs a
Lock with the specified name. |
InputStream |
openFile(String name)
Returns a stream reading an existing file.
|
void |
renameFile(String from,
String to)
Renames an existing file in the directory.
|
String |
toString()
For debug output.
|
void |
touchFile(String name)
Set the modified time of an existing file to now.
|
public static final String LOCK_DIR
gate.creole.annic.apache.lucene.lockdir
or java.io.tmpdir system propertypublic static FSDirectory getDirectory(String path, boolean create) throws IOException
Directories are cached, so that, for a given canonical path, the same FSDirectory instance will always be returned. This permits synchronization on directories.
path - the path to the directory.create - if true, create, or erase any existing contents.IOExceptionpublic static FSDirectory getDirectory(File file, boolean create) throws IOException
Directories are cached, so that, for a given canonical path, the same FSDirectory instance will always be returned. This permits synchronization on directories.
file - the path to the directory.create - if true, create, or erase any existing contents.IOExceptionpublic final String[] list() throws IOException
list in class DirectoryIOExceptionpublic final boolean fileExists(String name) throws IOException
fileExists in class DirectoryIOExceptionpublic final long fileModified(String name) throws IOException
fileModified in class DirectoryIOExceptionpublic static final long fileModified(File directory, String name) throws IOException
IOExceptionpublic void touchFile(String name) throws IOException
touchFile in class DirectoryIOExceptionpublic final long fileLength(String name) throws IOException
fileLength in class DirectoryIOExceptionpublic final void deleteFile(String name) throws IOException
deleteFile in class DirectoryIOExceptionpublic final void renameFile(String from, String to) throws IOException
renameFile in class DirectoryIOExceptionpublic final OutputStream createFile(String name) throws IOException
createFile in class DirectoryIOExceptionpublic final InputStream openFile(String name) throws IOException
openFile in class DirectoryIOExceptionpublic final Lock makeLock(String name)
Lock with the specified name. Locks are implemented
with File.createNewFile().
In JDK 1.1 or if system property disableLuceneLocks is the string "true", locks are disabled. Assigning this property any other string will not prevent creation of lock files. This is useful for using Lucene on read-only medium, such as CD-ROM.
public final void close()
throws IOException
close in class DirectoryIOExceptionpublic File getFile()
Copyright © 2024 GATE. All rights reserved.