There are plenty of apps that use a particular directory layout to some end or another -- iTunes, subversion and gcc are three that pop to mind -- but I can't think of any applications that require the user to manually place files somewhere. Users are very, very good at getting things wrong, so if an app requires a user to change his behaviour to conform to the app's expectations of where to find things, the user is likely to end up frustrated. (Though I suppose it depends on the user. gcc has me pretty well trained.)
One of my rules of thumb is "make it so that the user has to manage as little as possible". iTunes does a pretty decent job of keeping music files organized by creating folders for artists and subfolders for albums based on ID3 tags, and it further idiot-proofs the design by keeping an XML manifest of each file in its library.
In general, if your app can take responsibility for where it keeps its toys, your users will be much happier.