Create a shortcut to move files to folder?
Is there a way to create a shortcut to move the select file or files to a specific folder? I'm trying to organize my files more quickly.
Create a shortcut, Type: Command.
Set the destination folder in the first line, for example
DestDir:="D:\MyFolder"
Replace FileMove command with FileCopy if you want to copy.
Set the destination folder in the first line, for example
DestDir:="D:\MyFolder"
Code: Select all
DestDir := "" ;set the destination folder here
Send, ^c
Sleep 100
Loop, Parse, clipboard, `n, `r
FileMove, %A_LoopField%, %DestDir%
clipboard :=
return