可以使用Golang的os包中的Stat函数来判断一个文件是否存在,示例代码如下:
package main
import (
"fmt"
"os"
)
func main() {
filePath := "example.txt"
if _, err := os.Stat(filePath); err == nil {
fmt.Printf("%s exists\n", filePath)
} else {
fmt.Printf("%s does not exist\n", filePath)
}
}
其中,filePath是要判断的文件路径。如果文件存在,则输出“example.txt exists”,否则输出“example.txt does not exist”。