Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::experimental::filesystem::permissions

      From cppreference.com
      <cpp‎ |experimental‎ |fs
       
       
       
      Filesystem library
      Classes
      Functions
      File types
       
      Defined in header<experimental/filesystem>
      void permissions(const path& p, perms prms);
      void permissions(const path& p, perms prms, error_code& ec);
      (filesystem TS)

      Changes access permissions of the file to whichp resolves, as if by POSIXfchmodat. Symlinks are followed ifprms::resolve_symlinks is set.

      The effects depend onprms as follows:

      • If neitherperms::add_perms norperms::remove_perms is set, file permissions are set to exactlyprms& fs::perms::mask (meaning, every valid bit ofprms is applied).
      • Ifperms::add_perms, the file permissions are set to exactlystatus(p).permissions()|(prms& perms::mask) (meaning, any valid bit that is set inprms, but not in the file's current permissions is added to the file's permissions).
      • Ifperms::remove_perms is set, the file permissions are set to exactlystatus(p).permissions()& ~(prms& perms::mask) (meaning, any valid bit that is clear inprms, but set in the file's current permissions is cleared in the file's permissions).
      • If bothperms::add_perms andperms::remove_perms are set, error occurs.

      The non-throwing overload has no special action on error.

      Contents

      [edit]Parameters

      p - path to examine
      prms - permissions to set, add, or remove
      ec - out-parameter for error reporting in the non-throwing overload

      [edit]Return value

      (none)

      [edit]Exceptions

      The overload that does not take anerror_code& parameter throwsfilesystem_error on underlying OS API errors, constructed withp as the first argument and the OS error code as the error code argument.std::bad_alloc may be thrown if memory allocation fails. The overload taking anerror_code& parameter sets it to the OS API error code if an OS API call fails, and executesec.clear() if no errors occur. This overload has
      noexcept specification:  
      noexcept
        

      [edit]Notes

      Permissions may not necessarily be implemented as bits, but they are treated that way conceptually.

      Some permission bits may be ignored on some systems, and changing some bits may automatically change others (e.g. on platforms without owner/group/all distinction, setting any of the three write bits set all three).

      [edit]Example

      Run this code
      #include <bitset>#include <experimental/filesystem>#include <fstream>#include <iostream>namespace fs= std::experimental::filesystem; void demo_perms(fs::perms p){std::cout<<((p& fs::perms::owner_read)!= fs::perms::none?"r":"-")<<((p& fs::perms::owner_write)!= fs::perms::none?"w":"-")<<((p& fs::perms::owner_exec)!= fs::perms::none?"x":"-")<<((p& fs::perms::group_read)!= fs::perms::none?"r":"-")<<((p& fs::perms::group_write)!= fs::perms::none?"w":"-")<<((p& fs::perms::group_exec)!= fs::perms::none?"x":"-")<<((p& fs::perms::others_read)!= fs::perms::none?"r":"-")<<((p& fs::perms::others_write)!= fs::perms::none?"w":"-")<<((p& fs::perms::others_exec)!= fs::perms::none?"x":"-")<<'\n';} int main(){std::ofstream("test.txt");// create file std::cout<<"Created file with permissions: ";    demo_perms(fs::status("test.txt").permissions());     fs::permissions("test.txt", fs::perms::add_perms|                                fs::perms::owner_all| fs::perms::group_all); std::cout<<"After adding o+rwx and g+rwx:  ";    demo_perms(fs::status("test.txt").permissions());     fs::remove("test.txt");}

      Possible output:

      Created file with permissions: rw-r--r--After adding o+rwx and g+rwx:  rwxrwxr--

      [edit]See also

      identifies file system permissions
      (enum)[edit]
      determines file attributes
      determines file attributes, checking the symlink target
      (function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/experimental/fs/permissions&oldid=158866"

      [8]ページ先頭

      ©2009-2025 Movatter.jp