alist/utils/file.go

78 lines
1.5 KiB
Go
Raw Normal View History

2021-10-25 18:53:59 +08:00
package utils
import (
"encoding/json"
2021-10-26 22:28:37 +08:00
"github.com/Xhofe/alist/conf"
2021-10-25 18:53:59 +08:00
log "github.com/sirupsen/logrus"
"io/ioutil"
"os"
"path/filepath"
)
// Exists determine whether the file exists
func Exists(name string) bool {
if _, err := os.Stat(name); err != nil {
if os.IsNotExist(err) {
return false
}
}
return true
}
2021-10-26 22:28:37 +08:00
// IsDir determine whether the file is dir
func IsDir(path string) bool {
s, err := os.Stat(path)
if err != nil {
return false
}
return s.IsDir()
}
// GetFileType get file type
func GetFileType(ext string) int {
if ext == "" {
return conf.UNKNOWN
}
ext = ext[1:]
if IsContain(conf.OfficeTypes,ext) {
return conf.OFFICE
}
if IsContain(conf.AudioTypes,ext) {
return conf.AUDIO
}
if IsContain(conf.VideoTypes,ext) {
return conf.VIDEO
}
if IsContain(conf.TextTypes,ext) {
return conf.TEXT
}
return conf.UNKNOWN
}
2021-10-25 18:53:59 +08:00
// CreatNestedFile create nested file
func CreatNestedFile(path string) (*os.File, error) {
basePath := filepath.Dir(path)
if !Exists(basePath) {
err := os.MkdirAll(basePath, 0700)
if err != nil {
log.Errorf("can't create foler%s", err)
return nil, err
}
}
return os.Create(path)
}
// WriteToJson write struct to json file
func WriteToJson(src string, conf interface{}) bool {
data, err := json.MarshalIndent(conf,""," ")
if err != nil {
log.Errorf("failed convert Conf to []byte:%s", err.Error())
return false
}
err = ioutil.WriteFile(src, data, 0777)
if err != nil {
log.Errorf("failed to write json file:%s", err.Error())
return false
}
return true
}