class Dir

Overview

Objects of class Dir are directory streams representing directories in the underlying file system. They provide a variety of ways to list directories and their contents.

The directory used in these examples contains the two regular files (config.h and main.rb), the parent directory (..), and the directory itself (.).

See also: File.

Included Modules

Direct Known Subclasses

Defined in:

tempdir.cr

Class Method Summary

Class Method Detail

def self.mktmpdir(**args) #

Creates a new temporary directory

The given arguments will be passed to File.tempname as-is.

Alias for Tempdir.new.


[View source]
def self.mktmpdir(**args, &) #

Creates a new temporary directory and yield block with its path


[View source]