我需要获取所有文件,包括子文件夹中存在的属于特定类型的文件。
我正在使用Get-ChildItem做这样的事情:
Get-ChildItem "C:\windows\System32" -Recurse | where {$_.extension -eq ".txt"}
但是,它只是返回文件名而不是整个路径。
我需要获取所有文件,包括子文件夹中存在的属于特定类型的文件。
我正在使用Get-ChildItem做这样的事情:
Get-ChildItem "C:\windows\System32" -Recurse | where {$_.extension -eq ".txt"}
但是,它只是返回文件名而不是整个路径。
Answers:
这比使用后期过滤要快得多:
Get-ChildItem C:\WINDOWS\System32 -Filter *.txt -Recurse | % { $_.FullName }
您还可以像这样使用Select-Object:
Get-ChildItem "C:\WINDOWS\System32" *.txt -Recurse | Select-Object FullName
Select-Object
返回值PSCustomObject
不是字符串。如果您将结果用作另一个程序的参数,则可能不起作用
PSCustomObject
,请使用-ExpandProperty FullName
而不是FullName
。据我了解,-ExpandProperty
参数会导致cmdlet以指定属性的(native?)类型而不是某些自定义对象的形式返回结果。
Get-ChildItem -Path 'C:\Program Files\TheProgram' -Recurse | Where-Object -FilterScript {($_.LastWriteTime -gt '2020-03-01')} | Select-Object FullName
PS 5中确实令人讨厌的事情,其中$ _不会成为foreach中的完整路径。这些是FileInfo和DirectoryInfo对象的字符串版本。由于某种原因,路径中的通配符可以解决该问题,或者使用Powershell 6或7。您也可以通过管道将其通入get-item。
Get-ChildItem -path C:\WINDOWS\System32\*.txt -Recurse | foreach { "$_" }
Get-ChildItem -path C:\WINDOWS\System32 -Recurse | get-item | foreach { "$_" }
这似乎是.Net的问题,已在.Net Core(Powershell 7)中得到解决: 自v6.0.2#7132起,FileInfo / Directory实例的字符串化行为已更改
这对我有用,并产生了一个名称列表:
$Thisfile=(get-childitem -path 10* -include '*.JPG' -recurse).fullname
我通过使用来找到它,这是get-member -membertype properties
一个非常有用的命令。它提供给您的大多数选项都附加了.<thing>
,如此fullname
处所示。您可以粘贴相同的命令;
| get-member -membertype properties
在任何命令的末尾获得有关您可以使用它们执行的操作以及如何访问它们的更多信息:
get-childitem -path 10* -include '*.JPG' -recurse | get-member -membertype properties
试试这个:
Get-ChildItem C:\windows\System32 -Include *.txt -Recurse | select -ExpandProperty FullName
为什么还没有人使用过foreach循环?这里的一个优点是您可以轻松命名变量:
# Note that I'm pretty explicit here. This would work as well as the line after:
# Get-ChildItem -Recurse C:\windows\System32\*.txt
$fileList = Get-ChildItem -Recurse -Path C:\windows\System32 -Include *.txt
foreach ($textfile in $fileList) {
# This includes the filename ;)
$filePath = $textfile.fullname
# You can replace the next line with whatever you want to.
Write-Output $filePath
}
$
在眼前textfile
:$textfile = $fileList[$i].FullName
。假设$i
有一个数字值。
gci "C:\WINDOWS\System32" -r -include .txt | select fullname
[替代语法]
对于某些人来说,定向管道操作员不是他们的口味,而是他们更喜欢链接。在roslyn问题跟踪器中查看关于此主题的一些有趣观点:dotnet / roslyn#5445。
根据情况和上下文,可以将这种方法之一视为隐式(或间接)的。例如,在这种情况下,将管道用于不可枚举要求特殊令牌$_
(aka PowerShell's "THIS" token
)可能会使某些人感到反感。
对于这样的小伙子们,这是一种通过点链实现的更简洁,直接的方法:
(gci . -re -fi *.txt).FullName
(<咆哮>请注意,PowerShell的命令参数解析器接受部分参数名称那么除了。-recursive
; -recursiv
,-recursi
,-recurs
,-recur
,-recu
,-rec
和-re
被接受,但不幸的是没有-r
..这是唯一正确的选择是有道理的单-
字符(如果我们遵循POSIXy UNIXy约定)!</ rant>)
-r
简短的形式-Recurse
对我来说很好。
-File
switch 同样适用-fi
:-fil
并且-file
有效,但无效-f
。按照POSIX风格,它应该是--file
(多个字母)和-f
(单个字母,除非-f为其他内容保留,例如force
switch,那么它可以是其他类似-l
字符或根本没有单个字母选项)。
我正在使用以下脚本来扩展所有文件夹路径:
Get-ChildItem -path "C:\" -Recurse -Directory -Force -ErrorAction SilentlyContinue | Select-Object FullName | Out-File "Folder_List.csv"
完整文件夹路径不可用。113个字符之后:
Example - C:\ProgramData\Microsoft\Windows\DeviceMetadataCache\dmrccache\en-US\ec4d5fdd-aa12-400f-83e2-7b0ea6023eb7\Windows...
我使用此行命令在“ C:\ Temp”中搜索“ .xlm”文件,结果在“ result.txt”文件中打印了全名路径:
(Get-ChildItem "C:\Temp" -Recurse | where {$_.extension -eq ".xml"} ).fullname > result.txt
在我的测试中,此语法对我来说很漂亮。
*.txt*
(-Filter
使用CMD通配符)。如果这不是您想要的,请使用-Include *.txt
。