gpt4 book ai didi

powershell - Powershell-替换领先路径信息

转载 作者:行者123 更新时间:2023-12-03 00:06:00 28 4
gpt4 key购买 nike

我想使用-replace删除引导路径信息。但没有运气。

dir "C:\\IT\Tool" -r | % { $_.FullName -replace "C:\\IT\Tool","" }  | out-file c:\temp\FolderList.txt

例如我想要的输出:
\script.txt
\PROD\file.txt
\readme.txt

最佳答案

您可能只是想逃避第二个路径部分(\ Tool):

dir "C:\\IT\Tool" -r | % { $_.FullName -replace "C:\\IT\\Tool","" }  | out-file c:\temp\FolderList.txt

关于powershell - Powershell-替换领先路径信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61438421/

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