Julia Logo

Filesystem

isblockdev(path) → Bool

Returns true if path is a block device, false otherwise.

ischardev(path) → Bool

Returns true if path is a character device, false otherwise.

isdir(path) → Bool

Returns true if path is a directory, false otherwise.

isexecutable(path) → Bool

Returns true if the current user has permission to execute path, false otherwise.

isfifo(path) → Bool

Returns true if path is a FIFO, false otherwise.

isfile(path) → Bool

Returns true if path is a regular file, false otherwise.

Returns true if path is a symbolic link, false otherwise.

ispath(path) → Bool

Returns true if path is a valid filesystem path, false otherwise.

isreadable(path) → Bool

Returns true if the current user has permission to read path, false otherwise.

issetgid(path) → Bool

Returns true if path has the setgid flag set, false otherwise.

issetuid(path) → Bool

Returns true if path has the setuid flag set, false otherwise.

issocket(path) → Bool

Returns true if path is a socket, false otherwise.

issticky(path) → Bool

Returns true if path has the sticky bit set, false otherwise.

iswriteable(path) → Bool

Returns true if the current user has permission to write to path, false otherwise.

«

Main page

Previous topic

Constants

Next topic

Punctuation