The copied original folder should be pasted inside folder named with today’s date like “220310”
Like…..
Original folder : c://Org/AbcFolder
Destination folder : D://Dest/220310/AbcFolder
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.
Basically you’d use
to get all files you want to copy, then create target directory by
and loop over original filenames (in files), use FileInfo class to get path of original files, and File.Copy() to copy files to their new location.
All of these classes are in System.IO namespace.