gpt4 book ai didi

powershell - 字符串变量作为 Get-ChildItem 的参数

转载 作者:行者123 更新时间:2023-12-03 17:16:42 25 4
gpt4 key购买 nike

为什么会这样:

PS C:\Users\user> Get-ChildItem '\\COMPUTER\folder with spaces'

但这不是:

PS C:\Users\user> $a = "'\\COMPUTER\folder with spaces'"
PS C:\Users\user> Get-ChildItem $a

Cannot find path 'C:\Users\user\'\COMPUTER\folder with spaces''
because it does not exist

我怎样才能使用一个变量来做一些对后者产生影响的事情?

最佳答案

进一步的实验揭示了这个解决方案:

PS C:\Users\user> $a = "\\COMPUTER\folder with spaces"
PS C:\Users\user> Get-ChildItem "$a"

关于powershell - 字符串变量作为 Get-ChildItem 的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20070563/

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