Logo

Programming-Idioms

  • C#
  • Rust
  • Ada

Idiom #212 Check if folder exists

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

with Ada.Directories;
use Ada.Directories;
B : constant Boolean :=
    Exists (Path) and then Kind (Path) = Directory;
System.IO;
bool b = Directory.Exists(path);
use std::path::Path;
let b: bool = Path::new(path).is_dir();
#include <filesystem>
auto b = std::filesystem::is_directory(path);

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