1 个不稳定版本
0.1.0 | 2022年2月25日 |
---|
#521 in #test
用于 autoload
6KB
103 行
autopath
autopath
自动加载的附属包
#[test]
fn test_path(){
let a_p = "C:/Users/Joinz/.cargo/registry/src/github.com-1ecxxxxx9ec823/autocall-0.1.6/src/lib.rs".to_string();
let b_p = "rscontr/src/lib.rs".to_string();
let c_p = "src/lib.rs".to_string();
let a= get_caller_file_path(a_p.clone());
let b= get_caller_file_path(b_p.clone());
let c= get_caller_file_path(c_p.clone());
println!(" a:{} \n b:{} \n c:{}",a,b,c);
let a= get_caller_path(a_p.clone());
let b= get_caller_path(b_p.clone());
let c= get_caller_path(c_p.clone());
println!(" a:{} \n b:{} \n c:{}",a,b,c);
let e = get_lib_crate_path();
let f = get_work_path();
println!("e:{} ,f:{}",e,f);
}
更多模式和用例请参考 文档!