mirror of
https://github.com/jht5945/rust_util.git
synced 2025-12-29 16:40:05 +08:00
feat: add join_path
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rust_util"
|
name = "rust_util"
|
||||||
version = "0.6.23"
|
version = "0.6.24"
|
||||||
authors = ["Hatter Jiang <jht5945@gmail.com>"]
|
authors = ["Hatter Jiang <jht5945@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Hatter's Rust Util"
|
description = "Hatter's Rust Util"
|
||||||
|
|||||||
@@ -60,6 +60,15 @@ impl Iterator for JoinFilesReader {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn join_path(path1: &str, path2: &str) -> String {
|
||||||
|
let sp = if util_os::is_macos_or_linux() { "/" } else { "\\" };
|
||||||
|
if path1.ends_with(sp) {
|
||||||
|
path1.to_string() + path2
|
||||||
|
} else {
|
||||||
|
path1.to_string() + sp + path2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub fn find_parents_exists_file(file: &str) -> Option<PathBuf> {
|
pub fn find_parents_exists_file(file: &str) -> Option<PathBuf> {
|
||||||
let mut loop_count = 0_usize;
|
let mut loop_count = 0_usize;
|
||||||
match PathBuf::from(".").canonicalize() {
|
match PathBuf::from(".").canonicalize() {
|
||||||
|
|||||||
Reference in New Issue
Block a user