0

私が言った後、変数へのパス全体とともに、ディレクトリ内の特定の(* .csv)ファイルを取得しようとしています$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別の変数に戻すにはどうすれば よいですか

4

1 に答える 1

0

FullNameオブジェクトからプロパティを取得する

Get-ChildItem -Path \temp -Filter *.cvs | Select-Object -Property FullName
于 2012-07-20T17:03:45.803 に答える