使用powershell打印文件夹中的文件列表及其子文件夹

发布于 2025-01-23 06:25:51 字数 716 浏览 0 评论 0原文

我需要打印文件夹及其子文件夹中包含的所有文件。 如果我单独运行第一部分,我尝试使用此命令

Get-ChildItem -Path 'c:\mypath\' -File -Recurse | Out-File -FilePath 'c:\mypath\files.txt'

,我会在没有错误的情况下获得PowerShell的结果,但是如果我运行完整行,我会收到以下错误

Get-ChildItem : The tag present in the reparse point buffer is invalid.
At line:1 char:1
+ Get-ChildItem -Path 'C:\Users\XXX ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ReadError: (C:\Users\XXXX:String) [Get-ChildItem], IOExcep
tion
+ FullyQualifiedErrorId : DirIOError,Microsoft.PowerShell.Commands.GetChildItemCommand

如何修复?还有一种仅在同一行中使用路径的文件的方法吗?我需要一个类似格式的文件

fileName尺寸持久路径

非常感谢

i need to print all the files included in a folder and its subfolders.
i tried with this command

Get-ChildItem -Path 'c:\mypath\' -File -Recurse | Out-File -FilePath 'c:\mypath\files.txt'

If i run the first part alone, i get the result in powershell with no errors, but if i run the full line, i get the following error

Get-ChildItem : The tag present in the reparse point buffer is invalid.
At line:1 char:1
+ Get-ChildItem -Path 'C:\Users\XXX ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ReadError: (C:\Users\XXXX:String) [Get-ChildItem], IOExcep
tion
+ FullyQualifiedErrorId : DirIOError,Microsoft.PowerShell.Commands.GetChildItemCommand

how to fix? is there also a way to print only the files with their path in the same line? I'd need a file in a similar format

filename size lastEdited path

thank you so much

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雪落纷纷 2025-01-30 06:25:51

为了使其进入请求的格式,您只需要使用select-object才能选择感兴趣的项目:

Get-ChildItem -Path 'c:\mypath\'  -File -Recurse | 
select-object name,length,lastwritetime, fullname | 
out-file 'c:\mypath\files.txt'
 

In order to get it into the format requested you just need to use select-object to choose the items of interest:

Get-ChildItem -Path 'c:\mypath\'  -File -Recurse | 
select-object name,length,lastwritetime, fullname | 
out-file 'c:\mypath\files.txt'
 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文