Logo

Programming-Idioms

  • Dart
  • Pascal
  • Rust
  • Perl

Idiom #212 Check if folder exists

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

use 5.010;
my $b = -e -d $path;

http://p3rl.org/perl5100delta#Stacked-filetest-operators
import 'dart:io';
var b = await Directory(path).exists();
uses sysutils;
b := DirectoryExists(path);
use std::path::Path;
let b: bool = Path::new(path).is_dir();
with Ada.Directories;
use Ada.Directories;
B : constant Boolean :=
    Exists (Path) and then Kind (Path) = Directory;

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