Windows Powershell

From rbachwiki
Revision as of 14:36, 31 March 2020 by Bacchas (talk | contribs)
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


Category