Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a load of files in a folder with a date in the file name. Can someone create a vbscript to move all the files in the folder to other folders that are named the year from the file name. Also if the folder does not exists to create it.

So if the file is c:\test\FileName_2012_01_25 it would be moved into a folder named c:\Sample\2012

I would be very happy if anyone could help me

Thanks

share|improve this question
3  
What have you tried so far that isn't working? This is not a site for "will someone please write some code for me to do something?" questions. We expect you to put some effort into solving it yourself first, and then post the code that's not working for you. – Ken White Jan 21 at 1:09

closed as not a real question by Ken White, Kul-Tigin, Oldskool, Gajotres, Stefan Steinegger Jan 21 at 12:20

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted

See this answer to get you started. The change:

n = Split(f.Name, "_") ' split on _ instead of -

should be the only modification necessary.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.