gpt4 book ai didi

powershell - WindowsPowerShell 重命名项目

转载 作者:行者123 更新时间:2023-12-01 23:19:16 25 4
gpt4 key购买 nike

当我尝试重命名契约(Contract)文件夹以将契约(Contract)文件夹大写时,我收到重命名错误。我也试过“重命名项目契约(Contract)契约(Contract)”。任何人都知道我是否可以强制命令或我是否需要更改我的语法?

PS C:\> rename-item -Path .\contracts\ -NewName .\Contracts\
rename-item : Cannot rename the specified target, because it represents a path or device name.
At line:1 char:1
+ rename-item -Path .\contracts\ -NewName .\Contracts\
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Rename-Item], PSArgumentException
+ FullyQualifiedErrorId : Argument,Microsoft.PowerShell.Commands.RenameItemCommand

最佳答案

Rename-Item(Windows 中的文件名通常)不区分大小写。

您需要将其重命名为临时文件,然后重命名为所需的名称。

两步,如下图,

Rename-Item -Path ".\contracts" -NewName ".\contracts_temp" -PassThru | Rename-Item -NewName ".\Contracts"

关于powershell - WindowsPowerShell 重命名项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68329245/

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