Struct self_github_update::Move
source · pub struct Move<'a> { /* private fields */ }Expand description
Moves a file from the given path to the specified destination.
source and dest must be on the same filesystem.
If replace_using_temp is specified, the destination file will be
replaced using the given temporary path.
If the existing dest file is a currently running long running program,
replace_using_temp may run into errors cleaning up the temp dir.
If that’s the case for your use-case, consider not specifying a temp dir to use.
- Errors:
- Io - copying / renaming
Implementations§
source§impl<'a> Move<'a>
impl<'a> Move<'a>
sourcepub fn from_source(source: &'a Path) -> Move<'a>
pub fn from_source(source: &'a Path) -> Move<'a>
Specify source file
sourcepub fn replace_using_temp(&mut self, temp: &'a Path) -> &mut Self
pub fn replace_using_temp(&mut self, temp: &'a Path) -> &mut Self
If specified and the destination file already exists, the “destination” file will be moved to the given temporary location before the “source” file is moved to the “destination” file.
In the event of an io error while renaming “source” to “destination”,
the temporary file will be moved back to “destination”.
The temp dir must be explicitly provided since rename operations require
files to live on the same filesystem.