Methods Summary |
---|
public TempFile | createTempFile()Creates a new temporary file. Wheter it will be be created in memory
or on disk is up to to the implementation.
The prefix will be empty and the suffix will be
.tmp if created on disk.
|
public TempFile | createTempFile(java.lang.String prefix, java.lang.String suffix)Creates a new temporary file. Wheter it will be be created in memory
or on disk is up to to the implementation.
The prefix and suffix can be set by the user.
|
public TempFile | createTempFile(java.lang.String prefix, java.lang.String suffix, boolean allowInMemory)Creates a new temporary file. Wheter it will be be created in memory
or on disk can be specified using the allowInMemory
parameter. If the implementation doesn't support in-memory files
the new file will be created on disk.
The prefix and suffix can be set by the user.
|
public org.apache.james.mime4j.util.TempPath | createTempPath()
|
public org.apache.james.mime4j.util.TempPath | createTempPath(java.lang.String prefix)
|
public void | delete()
|
public java.lang.String | getAbsolutePath()
|