使用 PowerShell 在同一命令中创建目录和文件
Create directory and file in same command using PowerShell
我尝试在一个 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
只要提供你想要的文件路径,包括目录,它就会起作用:
New-Item -Path '.\hello\test\file.txt' -ItemType File -Force
我使用以下代码创建了目录和文件。
New-Item hello\test -type Directory ; Start-Sleep -Milliseconds 500 ; New-Item hello\test\file.txt
powershell 命令不区分大小写,所以最方便快捷的创建文件的方法是 -> new-item -path 。 -名称'newfile.txt' -物品类型'file'
对于新目录,与 Linux-terminal -> mkdir newdirectory
相同
我尝试在一个 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
只要提供你想要的文件路径,包括目录,它就会起作用:
New-Item -Path '.\hello\test\file.txt' -ItemType File -Force
我使用以下代码创建了目录和文件。
New-Item hello\test -type Directory ; Start-Sleep -Milliseconds 500 ; New-Item hello\test\file.txt
powershell 命令不区分大小写,所以最方便快捷的创建文件的方法是 -> new-item -path 。 -名称'newfile.txt' -物品类型'file'
对于新目录,与 Linux-terminal -> mkdir newdirectory
相同