Super Random Question Coli…

Joined
Jan 19, 2017
Messages
35,112
Reputation
-479
Daps
85,955
Are any of you aware of a way to drag & drop a document into multiple files at once? One by one takes too much fukking time. This would be for a PC
 

The BasedFather

Task Force
Joined
Feb 12, 2013
Messages
15,171
Reputation
7,867
Daps
92,751
Reppin
Bltch Mob
200w.gif
 

NoMorePie

Veteran
Supporter
Joined
Nov 26, 2014
Messages
60,835
Reputation
11,488
Daps
217,366
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.
 
Top