4个版本
0.1.3 | 2020年4月26日 |
---|---|
0.1.2 | 2018年10月3日 |
0.1.1 | 2018年10月3日 |
0.1.0 | 2018年10月3日 |
#1491 在 Web编程
1,037 每月下载量
用于 7 个Crate (3 直接)
10KB
229 行
url_path
url_path 无需文件在服务器或OS中存在即可操作URL路径。这在操作位置URL时很有用。示例用法
use url_path::UrlPath;
fn main(){
let url_path1 = UrlPath::new("src/md/./../../README.md");
let normalized_path1 = url_path1.normalize();
assert_eq!("README.md", normalized_path1);
let url_path2 = UrlPath::new("./README.md");
let normalized_path2 = url_path2.normalize();
assert_eq!("README.md", normalized_path2);
}
许可证:MIT
lib.rs
:
url_path 无需文件在服务器或OS中存在即可操作URL路径。这在操作位置URL时很有用。示例用法
use url_path::UrlPath;
fn main(){
let url_path1 = UrlPath::new("src/md/./../../README.md");
let normalized_path1 = url_path1.normalize();
assert_eq!("README.md", normalized_path1);
let url_path2 = UrlPath::new("./README.md");
let normalized_path2 = url_path2.normalize();
assert_eq!("README.md", normalized_path2);
}