在带有空格的目录中嵌套mkdir

时间:2016-06-21 12:22:35

标签: powershell command-line-interface

此命令:

set.seed(43)
df<-data.frame(location=sample(LETTERS[1:3],20,replace=TRUE),
               site=sample(c("bang","mys","hubl","dar"),20,replace=TRUE))

library(dplyr)
df%>%group_by(location,site)%>%summarize(Count=n())%>%arrange(desc(Count))%>%slice(1)%>%ungroup()%>%select(location,site)

输出以下内容:

mkdir "watermelon fun"\example

有没有办法可以创建一个嵌套目录,作为多个单词目录之一?

2 个答案:

答案 0 :(得分:2)

您必须用引号括起完整路径:

mkdir "watermelon fun\example"

答案 1 :(得分:2)

考虑使用Join-Path cmdlet组合路径。

$path = join-path 'watermelon fun' 'example'
New-Item -Path $path -ItemType Directory -Force