Skip to content

Latest commit

 

History

History

xfile

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

GoKit - xfile

File kits for Golang development.

Installation

go get -u github.com/likexian/gokit

Importing

import (
    "github.com/likexian/gokit/xfile"
)

Documentation

Visit the docs on GoDoc

Example

check file is exists

exists := xfile.Exists("/data/dev/gokit/LICENSE")
if exists {
    fmt.Println("file is exists")
} else {
    fmt.Println("file not exists")
}

get file size

size, err := xfile.Size("/data/dev/gokit/LICENSE")
if err != nil {
    panic(err)
} else {
    fmt.Println("file size is", size)
}

write text to file

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")
}

License

Copyright 2012-2024 Li Kexian

Licensed under the Apache License 2.0

Donation

If this project is helpful, please share it with friends.

If you want to thank me, you can give me a cup of coffee.