使用PowerShell在同一命令中创建目录和文件

时间:2017-02-15 09:14:31

标签: powershell new-item

我尝试在一个PowerShell命令中创建一个文件夹和一个文件: 我试过了:

New-Item hello\test\ (New-Item hello\test\file.txt -type file) -type directory -Force

New-Item file.txt (New-Item hello\test\ -type direcotry) -type file -Force

但两者似乎都没有按预期工作。 我想要实现的是创建hello\test\file.txt

的一个命令

3 个答案:

答案 0 :(得分:7)

只需提供您想要的文件路径,包括目录,它就可以工作:

New-Item -Path '.\hello\test\file.txt' -ItemType File -Force

答案 1 :(得分:0)

在powershell命令中不区分大小写,因此创建文件最方便,最快的方法是-> new-item -path。 -name'newfile.txt'-itemtype'file'

对于新目录,它与Linux终端中的相同-> mkdir新目录

答案 2 :(得分:-1)

我使用以下代码创建了目录和文件。

div {
    width: 300px;
    height: 100px;
    background-color: yellow;
    box-shadow: inset 0px 0px 0px 5px #888888;
}