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

FreeBSD Manual Pages

  
 
  

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

NAME
       std::experimental::filesystem::directory_options	   -   std::experimen-
       tal::filesystem::directory_options

Synopsis
	  Defined in header <experimental/filesystem>
	  enum class directory_options {

	  none,
	  follow_directory_symlink,		       (filesystem TS)
	  skip_permission_denied

	  };

	  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)

Member constants
	      Member constant	    Value			 Meaning
	  none			    0  (Default) Skip directory	symlinks, per-
       mission
					   denied is error.
	  follow_directory_symlink 1	   Follow rather than  skip  directory
       symlinks.
	  skip_permission_denied    2	    Skip directories that would	other-
       wise result in
					   permission denied errors.

See also
			constructs a directory iterator
	  constructor	(public	member function	of
			std::experimental::filesystem::directory_iterator)
			constructs a recursive directory iterator
	  constructor	(public	member function	of
			std::experimental::filesystem::recursive_directory_it-
       erator)

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

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

home | help