extern crate filetools;
use std::{env};
fn main() {
let current_dir =env::current_dir().unwrap();
let current_dir_path =current_dir.to_str().unwrap();
let test_file1_path =format!("{}/examples/test_file1.txt",¤t_dir_path);
println!("test_file1:{}",filetools::is_binary_file(&test_file1_path).unwrap());
let test_file2_path =format!("{}/examples/test_file2.jpg",¤t_dir_path);
println!("test_file2:{}",filetools::is_binary_file(&test_file2_path).unwrap());
}