public interface FilePool
限定符和类型 | 方法和说明 |
---|---|
void |
clear()
清空文件池
|
File |
createDir()
在池中创建一个临时目录
|
File |
createFile(String suffix)
在池中创建一个文件
|
long |
current() |
File |
getDir(long fId)
获取一个临时目录,如果临时目录不存在,返回null
|
File |
getFile(long fId,
String suffix)
获取一个文件,如果文件不存在,返回null
|
long |
getFileId(File f)
获取一个文件在池中的 ID。
|
boolean |
hasDir(long fId)
判断文件池中是否存在一个临时目录
|
boolean |
hasFile(long fId,
String suffix)
判断文件池中是否存在一个文件
|
File |
removeDir(long fId)
从池中删除一个临时目录,如果文件不存在,返回null
|
File |
removeFile(long fId,
String suffix)
从池中删除一个文件,如果文件不存在,返回null
|
File |
returnDir(long fId)
获取一个临时目录,如果临时目录不存在,创建它
|
File |
returnFile(long fId,
String suffix)
获取一个文件,如果文件不存在,创建它
|
long current()
boolean hasFile(long fId, String suffix)
fId
- 文件的 IDsuffix
- 文件后缀名File removeFile(long fId, String suffix)
fId
- 文件IDsuffix
- 文件后缀名File createFile(String suffix)
suffix
- 文件的后缀IOException
long getFileId(File f)
f
- 文件File getFile(long fId, String suffix)
fId
- 文件IDsuffix
- 文件后缀名boolean hasDir(long fId)
fId
- 临时目录的 IDFile removeDir(long fId)
fId
- 临时目录IDFile createDir()
IOException
File getDir(long fId)
fId
- 临时目录IDFile returnDir(long fId)
fId
- void clear()
IOException
Copyright © 2017. All rights reserved.