“GO si existe el archivo” Código de respuesta

GO si existe el archivo

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 si existe el archivo

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

Respuestas similares a “GO si existe el archivo”

Preguntas similares a “GO si existe el archivo”

Más respuestas relacionadas con “GO si existe el archivo” en Go

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código