To move all files from one subfolder to another subfolder using the command line in CMD, you can use the `move` command.
Here is an example command to move all files from `Subfolder1` to `Subfolder2`:
```
move "C:\Path\To\Subfolder1\*" "C:\Path\To\Subfolder2\"
```
Replace `C:\Path\To\Subfolder1` with the path to the source subfolder and `C:\Path\To\Subfolder2` with the path to the destination subfolder.
Make sure to adjust the paths according to the actual folder structure on your system.
move all files from one Subfolders to another sub folder in cmd
1 answer