gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 20:04:44 24 4
gpt4 key购买 nike

我尝试在一个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

关于powershell - 使用PowerShell在同一命令中创建目录和文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42245074/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com