PowerShell 技能连载 - 探索文件夹结构(第 1 部分)

这是一个快速示例,说明了如何发现文件夹结构。本示例采用任何根文件夹路径,并递归遍历其子文件夹。

对于每个子文件夹,将返回一个新的自定义对象,其中包含文件和子文件夹计数以及相对的子文件夹路径:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# specify the folder that you want to discover
# $home is the root folder of your user profile
# you can use any folder: $path = 'c:\somefolder'
$path = $HOME

# find all subfolders...
Get-ChildItem $path -Directory -Recurse -ErrorAction Ignore |
ForEach-Object {
# return custom object with relative subfolder path and
# file count
[pscustomobject]@{
# use GetFiles() to find all files in folder:
FileCount = $_.GetFiles().Count
FolderCount = $_.GetDirectories().Count
FullName = $_.Fullname.Substring($path.Length+1)
}
}

PowerShell 技能连载 - 探索文件夹结构(第 1 部分)

http://blog.vichamp.com/2021/03/16/exploring-folder-structures-part-1/

作者

吴波

发布于

2021-03-16

更新于

2022-07-06

许可协议

评论