- PowerShell 教程
- PowerShell - 主页
- PowerShell - 概述
- PowerShell - 环境设置
- PowerShell - Cmdlet
- PowerShell - 文件和文件夹
- PowerShell - 日期和计时器
- PowerShell - 文件 I/O
- PowerShell - 高级 Cmdlet
- PowerShell - 脚本编写
- PowerShell - 特殊变量
- PowerShell - 运算符
- PowerShell - 循环
- PowerShell - 条件
- PowerShell - 数组
- PowerShell - 哈希表
- PowerShell - 正则表达式
- PowerShell - 反引号
- PowerShell - 括号
- PowerShell - 别名
- PowerShell 实用资源
- PowerShell - 快速指南
- PowerShell - 实用资源
- PowerShell - 讨论
PowerShell - Format-Wide Cmdlet
cmdlet
Format-Wide cmdlet 可用于将输出格式化为一个包含每个对象一个属性的表。
在这些示例中,我们将看到 Format-Wide cmdlet 的实际操作。
示例 1
在此示例中,首先我们有一个文件 test.txt,位于 D:\temp\test,内容为“Welcome to TutorialsPoint.Com”;test1.txt,内容为“Hello World!”和“Welcome to TutorialsPoint.Com”,分两行显示。
在变量中获取文件详细信息。
$A = Get-ChildItem D:\temp\test\*.txt
使用 Format-Wide cmdlet 获取文件详细信息。
Format-Wide -InputObject $A
输出
你可以在 PowerShell 控制台中看到以下输出。
Directory: D:\temp\test test.txt test1.txt
示例 2
获取所需属性。
在 PowerShell ISE 控制台中键入以下命令
Format-Wide -InputObject $A -Property -Property Length
输出
你可以在 PowerShell 控制台中看到以下输出。
Directory: D:\temp\test 31 44
powershell_advanced_cmdlets.htm
广告