Sha256: 1cdf8bf16b3a164c594dac8773b7d1f9ebb28de169343184d34d6aac3b3a7eaa
Contents?: true
Size: 544 Bytes
Versions: 19
Compression:
Stored size: 544 Bytes
Contents
use crate::fs::asyncify; use std::io; use std::path::Path; /// Removes a file from the filesystem. /// /// Note that there is no guarantee that the file is immediately deleted (e.g. /// depending on platform, other open file descriptors may prevent immediate /// removal). /// /// This is an async version of [`std::fs::remove_file`][std] /// /// [std]: std::fs::remove_file pub async fn remove_file(path: impl AsRef<Path>) -> io::Result<()> { let path = path.as_ref().to_owned(); asyncify(move || std::fs::remove_file(path)).await }
Version data entries
19 entries across 19 versions & 1 rubygems