试图在powershell中传递一个文件及其路径

时间:2012-07-20 16:51:28

标签: powershell

在我说$files=Get-Childitem -path "E:\testimport\inbound\treas\" -filter "*.csv"之后,我试图在目录中获取特定的(* .csv)文件以及它的整个路径。

说,我有E:\testimport\inbound\treas\myfile1.csv,myfile2.csv..

中的csv文件

我将如何回来 E:\testimport\inbound\treas\myfile1.csv E:\testimport\inbound\treas\myfile2.csv E:\testimport\inbound\treas\myfile12.csv成一个单独的变量

1 个答案:

答案 0 :(得分:0)

从对象获取属性FullName

Get-ChildItem -Path \temp -Filter *.cvs | Select-Object -Property FullName