use std::fs; use std::io; use std::path::Path; use futures::{Future, Poll}; /// Rename a file or directory to a new name, replacing the original file if /// `to` already exists. /// /// This will not work if the new name is on a different mount point. /// /// This is an async version of [`std::fs::rename`][std] /// /// [std]: https://doc.rust-lang.org/std/fs/fn.rename.html pub fn rename, Q: AsRef>(from: P, to: Q) -> RenameFuture { RenameFuture::new(from, to) } /// Future returned by `rename`. #[derive(Debug)] pub struct RenameFuture where P: AsRef, Q: AsRef { from: P, to: Q, } impl RenameFuture where P: AsRef, Q: AsRef { fn new(from: P, to: Q) -> RenameFuture { RenameFuture { from: from, to: to, } } } impl Future for RenameFuture where P: AsRef, Q: AsRef { type Item = (); type Error = io::Error; fn poll(&mut self) -> Poll { ::blocking_io(|| fs::rename(&self.from, &self.to) ) } }