mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
add util.PathJoin
This commit is contained in:
parent
af1f64d244
commit
7bc3c93512
|
@ -6,7 +6,6 @@ import (
|
|||
"io"
|
||||
"math"
|
||||
"os"
|
||||
"path"
|
||||
"time"
|
||||
|
||||
"github.com/chrislusf/seaweedfs/weed/glog"
|
||||
|
@ -226,7 +225,7 @@ func (vs *VolumeServer) CopyFile(req *volume_server_pb.CopyFileRequest, stream v
|
|||
} else {
|
||||
baseFileName := erasure_coding.EcShardBaseFileName(req.Collection, int(req.VolumeId)) + req.Ext
|
||||
for _, location := range vs.store.Locations {
|
||||
tName := path.Join(location.Directory, baseFileName)
|
||||
tName := util.PathJoin(location.Directory, baseFileName)
|
||||
if util.FileExists(tName) {
|
||||
fileName = tName
|
||||
}
|
||||
|
|
|
@ -46,3 +46,7 @@ func (fp FullPath) Split() []string {
|
|||
}
|
||||
return strings.Split(string(fp)[1:], "/")
|
||||
}
|
||||
|
||||
func PathJoin(dir, name string) string {
|
||||
return filepath.ToSlash(filepath.Join(dir, name))
|
||||
}
|
Loading…
Reference in a new issue