Super Random Question Coli…

Joined
Jan 19, 2017
Messages
34,156
Reputation
-774
Daps
83,193
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
14,226
Reputation
6,583
Daps
85,980
Reppin
Bltch Mob
200w.gif
 

NoMorePie

Veteran
Supporter
Joined
Nov 26, 2014
Messages
58,212
Reputation
10,312
Daps
210,051
Reppin
Neptune
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