1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // $Id$
- using System;
- using System.IO;
- namespace Resources
- {
- /// <summary>The default implementation of the ResourceManager</summary>
- public class DefaultResourceManager : ResourceManager
- {
- private string DataDir;
- public DefaultResourceManager(string Path)
- {
- this.DataDir = Path;
- }
- // Try to avoid this function
- [System.Obsolete("Do not use GetFileName: resource could be inside an archive file")]
- public override string GetFileName(string ResourcePath)
- {
- return Path.Combine(DataDir, ResourcePath);
- }
- public override Stream Get(string ResourcePath)
- {
- try {
- return new FileStream(Path.Combine(DataDir, ResourcePath), FileMode.Open, FileAccess.Read);
- } catch(Exception e) {
- throw new Exception("Couldn't load resource '" + ResourcePath + "'", e);
- }
- }
- public override string GetDirectoryName(string ResourcePath)
- {
- return Path.GetDirectoryName(ResourcePath);
- }
- }
- }
|