83 lines
1.9 KiB
Go
83 lines
1.9 KiB
Go
// Copyright (c) 2014, B3log
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package util
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/b3log/wide/log"
|
|
)
|
|
|
|
// Logger.
|
|
var fileLogger = log.NewLogger(os.Stdout)
|
|
|
|
type myfile struct{}
|
|
|
|
// File utilities.
|
|
var File = myfile{}
|
|
|
|
// GetFileSize get the length in bytes of file of the specified path.
|
|
func (*myfile) GetFileSize(path string) int64 {
|
|
fi, err := os.Stat(path)
|
|
if nil != err {
|
|
return -1
|
|
}
|
|
|
|
return fi.Size()
|
|
}
|
|
|
|
// IsExist determines whether the file spcified by the given path is exists.
|
|
func (*myfile) IsExist(path string) bool {
|
|
_, err := os.Stat(path)
|
|
|
|
return err == nil || os.IsExist(err)
|
|
}
|
|
|
|
// IsBinary determines whether the specified content is a binary file content.
|
|
func (*myfile) IsBinary(content string) bool {
|
|
for _, b := range content {
|
|
if 0 == b {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// IsImg determines whether the specified extension is a image.
|
|
func (*myfile) IsImg(extension string) bool {
|
|
ext := strings.ToLower(extension)
|
|
|
|
switch ext {
|
|
case ".jpg", ".jpeg", ".bmp", ".gif", ".png", ".svg", ".ico":
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
|
|
// IsDir determines whether the specified path is a directory.
|
|
func (*myfile) IsDir(path string) bool {
|
|
fio, err := os.Lstat(path)
|
|
if nil != err {
|
|
fileLogger.Warnf("Determines whether [%s] is a directory failed: [%v]", path, err)
|
|
|
|
return false
|
|
}
|
|
|
|
return fio.IsDir()
|
|
}
|