lets say I have a folder with some files and I would like to copy them all in every random seconds (lets say random between 1sec and 1 hour -> is this possible?) in a random order. I know with File.Copy("from", "to"); you can copy files. But I need this random stuff. Any ideas?
lets say I have a folder with some files and I would like to
Share
Read the files into a list and shuffle using this
Randomize a List<T>
Then in the copy loop just sleep a random milliseconds from 1000 to 3600000