Go语言判断指定文件是否存在的方法
时间:2021-06-10 08:24:06|栏目:Golang|点击: 次
本文实例讲述了Go语言判断指定文件是否存在的方法。分享给大家供大家参考。具体实现方法如下:
复制代码 代码如下:
package main
import (
"fmt"
"os"
)
func main() {
f, err := os.Open("dotcoo.com.txt")
if err != nil && os.IsNotExist(err) {
fmt.Printf("file not exist!\n")
return
}
fmt.Printf("file exist!\n")
defer f.Close()
}
import (
"fmt"
"os"
)
func main() {
f, err := os.Open("dotcoo.com.txt")
if err != nil && os.IsNotExist(err) {
fmt.Printf("file not exist!\n")
return
}
fmt.Printf("file exist!\n")
defer f.Close()
}
希望本文所述对大家的Go语言程序设计有所帮助。
上一篇:Go语言接口定义与用法示例
栏 目:Golang
下一篇:利用golang的字符串解决leetcode翻转字符串里的单词
本文标题:Go语言判断指定文件是否存在的方法
本文地址:http://www.codeinn.net/misctech/139127.html