func MTime(path string) time.Time
func ExampleMTime() {
t := gfile.MTime(gfile.TempDir())
fmt.Println(t)
// May Output:
// 2021-11-02 15:18:43.901141 +0800 CST
}
func MTimestamp(path string) int64
func ExampleMTimestamp() {
t := gfile.MTimestamp(gfile.TempDir())
fmt.Println(t)
// May Output:
// 1635838398
}
func MTimestampMilli(path string) int64
func ExampleMTimestampMilli() {
t := gfile.MTimestampMilli(gfile.TempDir())
fmt.Println(t)
// May Output:
// 1635838529330
}
文件/目录操作Mkdir说明:创建文件夹,支持递归创建(建议采用绝对路径),创建后的文件夹权限为:drwxr-xr-x。格式:func Mkd...
Pos说明:Pos返回needle在haystack中第一次出现的位置,区分大小写。如果没有找到,则返回-1。格式:Pos(haystack, need...
基本介绍gjson模块实现了强大的数据编码/解析功能,支持数据层级检索、动态创建修改Json对象,并支持常见数据格式的解析和转...
GoFrame框架提供了强大的字符编码转换模块gchatset,支持常见字符集的相互转换。支持的字符集:编码字符集中文GBK/GB1803...