summaryrefslogtreecommitdiffstats
path: root/tokio/src/fs/set_permissions.rs
blob: 6e64054408f1999c84b99c1aff8a15a75218fb55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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]: https://doc.rust-lang.org/std/fs/fn.set_permissions.html
pub async fn set_permissions<P: AsRef<Path>>(path: P, perm: Permissions) -> io::Result<()> {
    let path = path.as_ref().to_owned();
    asyncify(|| std::fs::set_permissions(path, perm)).await
}