Enumeration lsTypesReadonly

This enumeration defines the different types of listings supported by the ls function. It specifies which file system entries should be included in the results.

Since

0.1.0

See

ls

Enumeration Members

Enumeration Members

LS_A: 1

This option lists both regular files and directories in the output. You can also use other number types for alias, like:

LS_A: 0b01 | 0o01 | 0x01  // Each equivalent to 1
LS_D: 2

This option filters the output to include only directory entries. You can also use other number types for alias, like:

LS_D: 0b10 | 0o02 | 0x02  // Each equivalent to 2
LS_F: 4

This option filters the output to include only regular files (non-directories). You can also use other number types for alias, like:

LS_F: 0b100 | 0o04 | 0x04  // Each equivalent to 4

Generated using TypeDoc v0.25.12