0
0
GGGiovanny Gongora
Read a local fila, store to a Vec<u8> and print the content
use std::fs;
let data = fs::read("/home/filename").expect("Impossible to read file");
println!("{}", data.len());
0
0
GGGiovanny Gongora
Read a local fila, store to a Vec<u8> and print the content
use std::fs;
let data = fs::read("/home/filename").expect("Impossible to read file");
println!("{}", data.len());