| |
|
| java.lang.Object org.columba.core.util.TempFileStore
TempFileStore | final public class TempFileStore (Code) | | Factory to create temporary Files on the file storage.
|
Method Summary | |
public static File | createTempFile() Create a temporary file on the temporary folder storage.
a File. | public static File | createTempFile(String name) Create a temporary file with the specified filename.
Parameters: name - the name of the file. | public static File | createTempFileWithSuffix(String suffix) Create a temporary file with the specified file name suffix.
Parameters: suffix - the suffix for the file. |
createTempFile | public static File createTempFile()(Code) | | Create a temporary file on the temporary folder storage.
a File. File suffix is tmp. |
createTempFile | public static File createTempFile(String name)(Code) | | Create a temporary file with the specified filename.
Parameters: name - the name of the file. a File. |
createTempFileWithSuffix | public static File createTempFileWithSuffix(String suffix)(Code) | | Create a temporary file with the specified file name suffix.
Parameters: suffix - the suffix for the file. a File. |
|
|
|