If you're using a PC running Windows, you can move files to multiple folders in a couple of ways:
1. **Using File Explorer**:
- Open File Explorer and navigate to the location where your files are located.
- Select the files you want to move by clicking on them while holding down the Ctrl key to select multiple files.
- Once selected, right-click on one of the selected files and choose "Cut" from the context menu.
- Navigate to the destination folder(s) where you want to move the files.
- Right-click in the destination folder and choose "Paste". This will move the selected files into the destination folder(s).
2. **Using Command Prompt**:
- Open Command Prompt.
- Use the `move` command along with the file paths of the files you want to move and the destination folder(s). For example:
```
move "C:\path\to\file1.txt" "C:\destination\folder1"
move "C:\path\to\file2.txt" "C:\destination\folder2"
```
- You can repeat the `move` command for each file you want to move to different folders.
These methods should allow you to move files to multiple folders at once on your PC.