Sha256: 8adccafa475dcfc1bc3989af73374d90683c1be4953ef812e5fd606f968d7b7a
Contents?: true
Size: 455 Bytes
Versions: 38
Compression:
Stored size: 455 Bytes
Contents
use crate::fs::asyncify; use std::fs::Permissions; use std::io; use std::path::Path; /// Changes the permissions found on a file or a directory. /// /// This is an async version of [`std::fs::set_permissions`][std] /// /// [std]: fn@std::fs::set_permissions pub async fn set_permissions(path: impl AsRef<Path>, perm: Permissions) -> io::Result<()> { let path = path.as_ref().to_owned(); asyncify(|| std::fs::set_permissions(path, perm)).await }
Version data entries
38 entries across 38 versions & 1 rubygems