How do I randomize the order of the files I get out of:
string[] files = Directory.GetFiles("folder");
Thank you! 🙂
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
One option is to use
Random:and then:
This isn’t the most efficient method as it takes O(nlogn). If this is a problem for you, better algorithms exist.