Rename content/fs to content/local
Signed-off-by: Derek McGowan <derek@mcgstyle.net>
This commit is contained in:
17
content/local/store_unix.go
Normal file
17
content/local/store_unix.go
Normal file
@@ -0,0 +1,17 @@
|
||||
// +build darwin freebsd
|
||||
|
||||
package local
|
||||
|
||||
import (
|
||||
"os"
|
||||
"syscall"
|
||||
"time"
|
||||
)
|
||||
|
||||
func getStartTime(fi os.FileInfo) time.Time {
|
||||
if st, ok := fi.Sys().(*syscall.Stat_t); ok {
|
||||
return time.Unix(int64(st.Ctimespec.Sec), int64(st.Ctimespec.Nsec))
|
||||
}
|
||||
|
||||
return fi.ModTime()
|
||||
}
|
Reference in New Issue
Block a user