我试图编写一个程序来获取文件服务器上的打开文件列表,并将它们列出到ListView。我能够找回当前打开的文件的集合,但是我无法访问我需要的属性。
如何访问这些属性?
我在这里有几张图片,希望有所帮助。
https://onedrive.live.com/?id=22875E7FE09C494%2126144&cid=022875E7FE09C494&group=0
答案 0 :(得分:1)
列出属性
$file = Get-Item 'c:\file.txt'
$file.GetType().GetProperties()
{p>或@ stanley-de-boer previous question
foreach ($property in $result.PSObject.Properties) { $property.Name }
列出值
foreach ($property in $result.PSObject.Properties) { $property.value }
列出功能
Get-Member $file