Windows Powershell

From rbachwiki
Jump to navigation Jump to search

Script that create a folder based on today's date, then copy the contents of one folder to another

$datecurrent = get-date -Format MM-dd-yyyy
$apath = "C:\Users\Robert\Desktop\leaves"
$btest = "C:\Users\Robert\Desktop\leaves\pdf-sliced"
$ctest = "C:\Users\Robert\Desktop\leaves\atest"

#create directory
New-Item -ItemType directory -Path "$ctest\$datecurrent"

#open folder
ii "$ctest\$datecurrent"

#copy files
Copy-Item -Path $btest\* -Destination "$ctest\$datecurrent" -Verbose

save with .ps1 extension

Category