Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Java

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 java.io.File;
File f = new File(path);
boolean b = f.exists() && f.isDirectory();
with Ada.Directories;
use Ada.Directories;
B : constant Boolean :=
    Exists (Path) and then Kind (Path) = Directory;

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