File kits for Golang development.
go get -u github.com/likexian/gokit
import (
"github.com/likexian/gokit/xfile"
)
Visit the docs on GoDoc
exists := xfile.Exists("/data/dev/gokit/LICENSE")
if exists {
fmt.Println("file is exists")
} else {
fmt.Println("file not exists")
}
size, err := xfile.Size("/data/dev/gokit/LICENSE")
if err != nil {
panic(err)
} else {
fmt.Println("file size is", size)
}
err := xfile.WriteText("/tmp/not-exists-dir/LICENSE", "Copyright 2012-2024 Li Kexian\n")
if err != nil {
panic(err)
} else {
fmt.Println("write to file successful")
}
Copyright 2012-2024 Li Kexian
Licensed under the Apache License 2.0
If this project is helpful, please share it with friends.
If you want to thank me, you can give me a cup of coffee.