8 lines
346 B
PowerShell
8 lines
346 B
PowerShell
#Kravet POs
|
|
Get-ChildItem "D:\FTP" -Filter Kravet_to_vendor_*.csv | Foreach-Object { python D:\FTP\kf_850.py $_.Name }
|
|
|
|
#Momentum POs
|
|
Get-ChildItem "D:\FTP" -Filter SBR_850_*.txt | Foreach-Object { python D:\FTP\mg_850.py $_.Name }
|
|
|
|
#Maharam POs
|
|
Get-ChildItem "D:\FTP" -Filter MAH_850_*.txt | Foreach-Object { python D:\FTP\mf_850.py $_.Name } |