浏览代码

fix problem: "Cannot create dir while not in root_dir" (#18)

* fix problem: "Cannot create dir while not in root_dir"
Donkey Kane 1 年之前
父节点
当前提交
3057dc457d
共有 1 个文件被更改,包括 9 次插入1 次删除
  1. 9 1
      src/shell/command/mod.rs

+ 9 - 1
src/shell/command/mod.rs

@@ -335,8 +335,16 @@ impl Shell {
         if unlikely(args.len() != 1) {
             return Err(CommandError::WrongArgumentCount(args.len()));
         }
+        let nowpath = Self::current_dir();
         let path = args.get(0).unwrap();
-        if let Err(e) = fs::create_dir_all(path) {
+        let opt_path = nowpath + "/" + path;
+        let target_path;
+        if path.starts_with("/") {
+            target_path = path;
+        } else {
+            target_path = &opt_path;
+        }
+        if let Err(e) = fs::create_dir_all(target_path) {
             print!("{e}")
         }
         Ok(())