You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 12 Next »
gfile模块是对文件操作的进一步封装,提供了常用的,简易的API来操作底层文件,隐藏了复杂的底层实现细节。
gfile
使用方式:
import "github.com/gogf/gf/os/gfile"
接口文档:
https://godoc.org/github.com/gogf/gf/os/gfile
示例:
func ExampleMTime() { t := gfile.MTime(gfile.TempDir()) fmt.Println(t) // May Output: // 2021-11-02 15:18:43.901141 +0800 CST }
func ExampleMTimestamp() { t := gfile.MTimestamp(gfile.TempDir()) fmt.Println(t) // May Output: // 1635838398 }
func ExampleMTimestampMilli() { t := gfile.MTimestampMilli(gfile.TempDir()) fmt.Println(t) // May Output: // 1635838529330 }
func ExampleSize() { tempSizeDir := gfile.TempDir() + gfile.Separator + "test_size" gfile.Mkdir(tempSizeDir) size := gfile.Size(tempSizeDir) fmt.Println(size) // Output: // 0 }
func ExampleSizeFormat() { tempSizeDir := gfile.TempDir() + gfile.Separator + "test_size" gfile.Mkdir(tempSizeDir) sizeStr := gfile.SizeFormat(tempSizeDir) fmt.Println(sizeStr) // Output: // 0.00B }
func ExampleReadableSize() { tempSizeDir := gfile.TempDir() + gfile.Separator + "test_size" gfile.Mkdir(tempSizeDir) sizeStr := gfile.ReadableSize(tempSizeDir) fmt.Println(sizeStr) // Output: // 0.00B }
func ExampleStrToSize() { size := gfile.StrToSize("100MB") fmt.Println(size) // Output: // 104857600 }
func ExampleFormatSize() { sizeStr := gfile.FormatSize(104857600) fmt.Println(sizeStr) sizeStr1 := gfile.FormatSize(999999999999999999) fmt.Println(sizeStr1) // Output: // 100.00M // 888.18P }
func ExampleSortFiles() { files := []string{ "/aaa/bbb/ccc.txt", "/aaa/bbb/", "/aaa/", "/aaa", "/aaa/ccc/ddd.txt", "/bbb", "/0123", "/ddd", "/ccc", } sortOut := gfile.SortFiles(files) fmt.Println(sortOut) // Output: // [/0123 /aaa /aaa/ /aaa/bbb/ /aaa/bbb/ccc.txt /aaa/ccc/ddd.txt /bbb /ccc /ddd] }
func ExampleSearch() { // init fileName := "123.txt" tempDir := gfile.TempDir("test_size") tempFile := tempDir + gfile.Separator + fileName gfile.Mkdir(tempDir) gfile.Create(tempFile) // search file realPath, _ := gfile.Search(fileName, tempDir) fmt.Println(gfile.Basename(realPath)) // Output: // 123.txt }