Search found 2 matches

by Marius-Scripter
19 Sep 2020, 09:23
Forum: Ask for Help (v1)
Topic: Copy Files on every USB-Drive Topic is solved
Replies: 10
Views: 488

Re: Copy Files on every USB-Drive Topic is solved

Found an Solution:

Code: Select all

DriveGet, DriveList, List, REMOVABLE
Loop, Parse, DriveList {
FileCopy, *.png, %A_LoopField%
FileCopy, *.jpg, %A_LoopField%
}
But thanks anyways!
by Marius-Scripter
19 Sep 2020, 08:36
Forum: Ask for Help (v1)
Topic: Copy Files on every USB-Drive Topic is solved
Replies: 10
Views: 488

Copy Files on every USB-Drive Topic is solved

I want to copy Images on every USB-Drive
Like so:

Code: Select all

GetDrive, DriveList, List, REMOVABLE
For Drive in Drivelist { ;Not real code
    FileCopy, *.png, %Drive%
    FileCopy, *.jpg, %Drive%
}
MsgBox, Files Copied

Go to advanced search