Move files up one folder level might seem like a duplicate, but it is not.
Folder Structure
D:.
└───test
└───Download
└───First
└───Second
└───Third
When I run the following script the Download
folder is moved up one level.
Get-ChildItem -Recurse -Filter "Download" | Move-Item -Destination ".\.."
Current Output
D:.
└───test
└───Download
└───First
└───Second
└───Third
But, I want everything inside the Download
folder to moved up one level.
Expected Output
D:.
└───test
└───Download
└───First
└───Second
└───Third
What am I doing wrong?