Fix sed issue for good!!! (Not for evil)

axtloss/rework-partitioning
Michal S 2 years ago committed by Michal
parent 6c156d2009
commit 392f6825df

@ -1,5 +1,5 @@
use crate::internal::*;
use std::fs::{File, OpenOptions, read_to_string};
use std::fs::{self, File, OpenOptions};
use std::io::prelude::*;
pub fn create_file(path: &str) {
@ -38,15 +38,10 @@ pub fn append_file(path: &str, content: &str) -> std::io::Result<()> {
pub fn sed_file(path: &str, find: &str, replace: &str) -> std::io::Result<()> {
log::info!("Sed '{}' to '{}' in file {}", find, replace, path);
let mut file = OpenOptions::new().read(true).write(true).open(path)?;
let contents = read_to_string(path)?;
let contents = contents.replace(find, replace);
file.set_len(0)?;
file.write_all(contents.as_bytes())?;
let contents = fs::read_to_string(path)?;
let new_contents = contents.replace(find, replace);
let mut file = OpenOptions::new().write(true).truncate(true).open(path)?;
file.write_all(new_contents.as_bytes())?;
Ok(())
}

Loading…
Cancel
Save