I'm using Umbraco 7.4.
I'd like to enumerate all files from a Media folder ("Images\Splash").
To a custom class, I pass the reference of the UmbracoHelper instance from the controller, and can get the folder like this:
var folder = _umbraco.Media(333);
333 being the Id of the Media folder I want.
How can I get this folder by it's hash, or by it's name?
I'd like to not use the Id, as this is not guaranteed to be the same between environments (dev, staging, production).