gpt4 book ai didi

powershell - 触摸命令在 VSC 终端中不起作用

转载 作者:行者123 更新时间:2023-12-02 17:28:25 27 4
gpt4 key购买 nike

我是新手,仍在尝试弄清楚如何配置我的开发环境。我在 Visual Studio Code 中使用 touch 命令时遇到错误。我可以使用 mkdir 创建目录,但无法创建 .php 文件。这是我收到的错误。有任何想法吗?谢谢!

touch : The term 'touch' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + touch new.php + ~~~~~ + CategoryInfo : ObjectNotFound: (touch:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException

最佳答案

要在 PowerShell 中创建新的空文件,您可以使用:

ni new.php

或者,没有别名和默认值:

New-Item -Path X:\path -Name new.php -ItemType File  

有关详细信息,请参阅 Get-Help New-Item 或查看 online

关于powershell - 触摸命令在 VSC 终端中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56417937/

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