-
Notifications
You must be signed in to change notification settings - Fork 7
Extensible storage
lchrennew edited this page Dec 18, 2012
·
3 revisions
Web File Manager provides strong extensibility to let you use any kind of storage you want, such as file system, MongoDB GridFS, HDFS or an hybrid storage system.
Current version implements two kinds of storage: Disk file system and MongoDB GridFS.
If you want to use other storages, follow this guide please.
- Implement your
IFileStorageinterface - Implement your
IFileEntryinterface - Implement your
IFilenameParserinterface - Configure the appSettings.config file and set value of
IFileStorageto the full name of the class implemented in step 1. - Configure the appSettings.config file and set value of
IFilenameParserto the full name of the class implemented in step 3.
DONE!