Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
std::filesy...ory_options(3)  C++ Standard Libary std::filesy...ory_options(3)

NAME
       std::filesystem::directory_options - std::filesystem::directory_options

Synopsis
	  Defined in header <filesystem>
	  enum class directory_options {

	  none = /* unspecified	*/,
	  follow_directory_symlink = /*	unspecified */,	 (since	C++17)
	  skip_permission_denied = /* unspecified */

	  };

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

	  directory_options satisfies the requirements of  BitmaskType	(which
       means the bitwise
	  operators  operator&,	 operator|,  operator^,	operator~, operator&=,
       operator|=, and
	  operator^= are defined for this type).  none	represents  the	 empty
       bitmask;	every
	  other	enumerator represents a	distinct bitmask element.

Member constants
	      Member constant				     Meaning
	  none			    (Default) Skip directory symlinks, permis-
       sion denied is
				   error.
	  follow_directory_symlink Follow rather than skip directory symlinks.
	  skip_permission_denied   Skip	directories that would	otherwise  re-
       sult in permission
				   denied errors.

See also
	  constructor	constructs a directory iterator
			(public	 member	 function  of  std::filesystem::direc-
       tory_iterator)
			constructs a recursive directory iterator
	  constructor	(public	member function	of
			std::filesystem::recursive_directory_iterator)

http://cppreference.com		  2022.07.31	  std::filesy...ory_options(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::filesystem::directory_options&sektion=3&manpath=FreeBSD+Ports+15.0>

home | help