package pathx import ( "fmt" "testing" ) func TestExists(t *testing.T) { fmt.Println(Exists("./a.txt")) fmt.Println(Exists("./a1.txt")) }