FileSystemStorage is an Archetype storage for storing data on FileSystem
This storage is used to avoid ZODB to grow quickly when using a lot of large files.

DEPENDENCIES

  * Zope 2.7.4
  
  * Plone 2.0+
  
  * Archetypes 1.3+

How to use it ?

  * Add import in you schema definition :
    **from Products.FileSystemStorage.FileSystemStorage import FileSystemStorage**
    
  * Add storage definition in your field :
    **storage=FileSystemStorage()**
    
  * Add specific macro (Original AT file widget template doesn't work with storage download) in your widget :
    **macro='fss_file_widget'**
  
  * Configure your storage path and backups path. Make sure zope process have write permissions.
  
  * It works :-)
