Operations.readdir

Returns a list of files and directory names in the given folder. Note that you have to return . and ..

class Operations
string[]
readdir
(
const(char)[] path
)

Parameters

path
Type: const(char)[]

The path to the directory.

Return Value

Type: string[]

An array of filenames.

Meta