mirror of
https://github.com/vbatts/go-mtree.git
synced 2025-07-03 22:28:29 +00:00
keywords: time keyword 9 postition decimal
Matching with the FreeBSD standard format Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
fca9d4b5b6
commit
6adcc98b22
2 changed files with 5 additions and 5 deletions
|
@ -209,9 +209,9 @@ var (
|
|||
timeKeywordFunc = func(path string, info os.FileInfo) (string, error) {
|
||||
t := info.ModTime().UnixNano()
|
||||
if t == 0 {
|
||||
return "time=0.0", nil
|
||||
return "time=0.000000000", nil
|
||||
}
|
||||
return fmt.Sprintf("time=%d.%d", (t / 1e9), (t % (t / 1e9))), nil
|
||||
return fmt.Sprintf("time=%d.%9.9d", (t / 1e9), (t % (t / 1e9))), nil
|
||||
}
|
||||
linkKeywordFunc = func(path string, info os.FileInfo) (string, error) {
|
||||
if info.Mode()&os.ModeSymlink != 0 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue