Asked by 7
move all files from one Subfolders to another sub folder in cmd
Answers
There are no human answers yet.
Answered by
GPT 3.5
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.
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.
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.