Question: Write a PowerShell script that will copy all the files with a specified extension from a specified directory to the specified directory(target directory). -If the
Write a PowerShell script that will copy all the files with a specified extension from a specified directory to the specified directory(target directory).
-If the target directory does not exist it should create one.
- If the target directory already exists it should preserve the existing contents
-if the files have the same name, then it will overwrite the file in the target directory.
# I got this as a result. Could you please make it correct? This is just creating a folder, but not coping a specified extension
$path = "c:\\Projects\\test\\NewFolder"
If(!(test-path $path))
{
New-Item -ItemType Directory -Force -Path $path
}
Copy-Item -path "c:\\Projects\Basic\\*" -Recurse -Include "*.txt" -Destination $path -Container:$true
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
