类 FileKit
java.lang.Object
com.iohao.game.common.kit.io.FileKit
- 作者:
- 渔民小镇
- 日期:
- 2022-12-23
-
构造器概要
-
方法概要
修饰符和类型方法说明static boolean
判断文件是否存在,如果 file 为 null,则返回 false创建 File 对象,自动识别相对或绝对路径,相对路径将自动从 ClassPath 下寻找boolean
isDirectory
(String path) 判断是否为目录,如果 path 为 null,则返回 false创建文件夹,如果存在直接返回此文件夹
此方法不对 File 对象类型做判断,如果 File 不存在,无法判断其类型writeUtf8String
(String content, String path) 将String写入文件,覆盖模式,字符集为UTF-8
-
构造器详细资料
-
FileKit
public FileKit()
-
-
方法详细资料
-
mkdir
创建文件夹,如果存在直接返回此文件夹
此方法不对 File 对象类型做判断,如果 File 不存在,无法判断其类型- 参数:
dirPath
- 文件夹路径,使用 POSIX 格式,无论哪个平台- 返回:
- 创建的目录
-
file
创建 File 对象,自动识别相对或绝对路径,相对路径将自动从 ClassPath 下寻找- 参数:
path
- 相对 ClassPath 的目录或者绝对路径目录- 返回:
- File
-
writeUtf8String
将String写入文件,覆盖模式,字符集为UTF-8- 参数:
content
- 写入的内容path
- 文件路径- 返回:
- 写入的文件
-
isDirectory
判断是否为目录,如果 path 为 null,则返回 false- 参数:
path
- 文件路径- 返回:
- 如果为目录 true
-
exist
判断文件是否存在,如果 file 为 null,则返回 false- 参数:
file
- 文件- 返回:
- 如果存在返回 true
-