Logo

Programming-Idioms

  • Go
  • Python

Idiom #212 Check if folder exists

Set the boolean b to true if path exists on the filesystem and is a directory; false otherwise.

import "os"
info, err := os.Stat(path)
b := !os.IsNotExist(err) && info.IsDir()
import os
b = os.path.isdir(path)
with Ada.Directories;
use Ada.Directories;
B : constant Boolean :=
    Exists (Path) and then Kind (Path) = Directory;

New implementation...
< >
programming-idioms.org