GO: os.Stat
2017-12-06 本文已影响289人
随风化作雨
package main
import (
"fmt"
//"strings"
//"bufio"
//"io"
"os"
)
func main() {
f1, _ := os.Stat("file")
f2, _ := os.Stat("file")
fmt.Println(f1.Name())
fmt.Println(f1.IsDir())
fmt.Println(f1.ModTime())
fmt.Println(f1.Mode())
fmt.Println(f1.Size())
fmt.Println(f1.Sys())
if os.SameFile(f1, f2) {
fmt.Println("same!")
return
}
fmt.Println("not same!")
}