remove unncessary print from ported_readlink test

This commit is contained in:
M.Amin Rayej
2024-05-17 03:00:55 +03:30
parent 003d3f22d4
commit c78eadfb59

View File

@ -6,9 +6,6 @@ use std::io::Read;
fn main() {
let sym_link_path = "/hamlet/bookmarks/2019-07-16";
let p = std::path::Path::new(sym_link_path);
dbg!(&p);
println!("{}", p.exists());
let link_path = std::fs::read_link(sym_link_path).expect("Could not read link");
println!("{}", link_path.to_string_lossy());