在我说$files=Get-Childitem -path "E:\testimport\inbound\treas\" -filter "*.csv"
之后,我试图在目录中获取特定的(* .csv)文件以及它的整个路径。
说,我有E:\testimport\inbound\treas\myfile1.csv,myfile2.csv..
我将如何回来
E:\testimport\inbound\treas\myfile1.csv
E:\testimport\inbound\treas\myfile2.csv
E:\testimport\inbound\treas\myfile12.csv
成一个单独的变量
答案 0 :(得分:0)
从对象获取属性FullName
Get-ChildItem -Path \temp -Filter *.cvs | Select-Object -Property FullName