Use filepath instead of path
This commit is contained in:
parent
83530f1b2f
commit
f635ce5da3
9
file.go
9
file.go
@ -5,7 +5,6 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
@ -50,17 +49,17 @@ func (self *File) Path() string {
|
|||||||
|
|
||||||
// Name returns the base name of the file.
|
// Name returns the base name of the file.
|
||||||
func (self *File) Name() string {
|
func (self *File) Name() string {
|
||||||
return path.Base(self.relPath)
|
return filepath.Base(self.relPath)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dir returns the containing directory of the file.
|
// Dir returns the containing directory of the file.
|
||||||
func (self *File) Dir() string {
|
func (self *File) Dir() string {
|
||||||
return path.Dir(self.relPath)
|
return filepath.Dir(self.relPath)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ext returns the extension of the file.
|
// Ext returns the extension of the file.
|
||||||
func (self *File) Ext() string {
|
func (self *File) Ext() string {
|
||||||
return path.Ext(self.relPath)
|
return filepath.Ext(self.relPath)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Size returns the file length in bytes.
|
// Size returns the file length in bytes.
|
||||||
@ -143,7 +142,7 @@ func (self *File) export(targetDir string) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := os.MkdirAll(path.Dir(targetPath), 0755); err != nil {
|
if err := os.MkdirAll(filepath.Dir(targetPath), 0755); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user