Hi,
we have the following scenario:
* a .NET application allows users to upload documents.
* the documents are stored in a filesystem, currently inaccessible to users. the path is basically \year\month\day\filename.ext
* the path and filename are stored in a database (MS SQL200) that is used to link the documents to various records in the system
the question:
how to implement a situation where:
we maintain the link between the files and the records
we allow users to modify the files and to access them easily
we prevent situations where the files and the db would become unsynchronized.
it has to be as user friendly as possible (e.g. no "download the file, modify and upload it again")
Thanks for any hints and pointers to a direction
Matej