std::filesystem::directory_options

Header: <filesystem>

This type represents available options that control the behavior of the directory_iterator and recursive_directory_iterator.

# Declarations

enum class directory_options {
none = /* unspecified */,
follow_directory_symlink = /* unspecified */,
skip_permission_denied = /* unspecified */
};

(since C++17)

# Example

This section is incompleteReason: no example

# See also