Go语言判断指定文件是否存在的方法
程序员文章站
2022-03-21 10:29:44
本文实例讲述了go语言判断指定文件是否存在的方法。分享给大家供大家参考。具体实现方法如下:
复制代码 代码如下:package main
...
本文实例讲述了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语言程序设计有所帮助。