“vá se houver arquivo” Respostas de código

vá se houver arquivo

import "os"

func main() {
	if functs.FileExists("path/to/file") {
		fmt.Println("Example file found.")
	} else {
		fmt.Println("Example file not found!")
	}
}

func FileExists(filename string) bool {
	info, err := os.Stat(filename)
	if os.IsNotExist(err) {
		return false
	}
	return !info.IsDir()
}
Dead Donkey

Golang Verifique se o arquivo existe

file, err := os.OpenFile(...)
if errors.Is(err, os.ErrNotExist) {
    // handle the case where the file doesn't exist
}
Rich Rook

Respostas semelhantes a “vá se houver arquivo”

Perguntas semelhantes a “vá se houver arquivo”

Mais respostas relacionadas para “vá se houver arquivo” em Go

Procure respostas de código populares por idioma

Procurar outros idiomas de código