Super Random Question Coli…

Joined
Jan 19, 2017
Messages
36,557
Reputation
-9
Daps
89,761
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
16,431
Reputation
9,030
Daps
100,456
Reppin
Bltch Mob
200w.gif
 

NoMorePie

Veteran
Supporter
Joined
Nov 26, 2014
Messages
63,453
Reputation
13,018
Daps
223,182
Reppin
Canada
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