从PowerShell中的部分路径获取文件名

时间:2015-05-21 15:08:47

标签: powershell

我正在使用PowerShell打开PDF文件,我不知道PDF文件的完整文件名。

以下问题帮助我完成了这项工作,以下代码来自该问题。

Select a file without knowing the last five characters of its name in PowerShell

$dirPath  = Join-Path 'C:\temp' $currentYear 
$filePath = Join-Path $dirPath 'file201520_*.pdf'

$file = Get-Item $filePath

如何才能提取其实际全名?

1 个答案:

答案 0 :(得分:2)

这将显示$File的属性:

$file | Format-List *

您会看到$file.Name会告诉您文件的名称,或$file.FullName会为您提供完整路径的名称。