1 2 3 4 5 6 7 8 9 10 11 12 13
use std::path::PathBuf; pub fn mft_sample() -> PathBuf { PathBuf::from(file!()) .parent() .unwrap() .parent() .unwrap() .parent() .unwrap() .join("samples") .join("MFT") }