-
-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Read-Only FileSystem #42
Comments
just to document a better ugly way:
Windows still show the option to create files, but it did not try to create |
I'm not sure if this is possible, because I couldn't find out whether MKCOL, etc.. are required for WebDAV 1 compliance. |
MKCOL is writing on objects, I understand right ? thanks for all |
It's for creating a new collection (directory). |
I thought a bit about your problem. I guess the following solution would be what you really need:
The allowed HTTP methods are returned in the EDIT: This allows returning a different |
nice. Thanks ! |
Is this issue going to be solved? I think your solution is to add a read-only implementation of I'm not familiar with this. Is Besides, I saw |
Thanks for good product !
I am trying to make a read-only file system ,based on DotNetFileSystem but with a access list from database.
this code works (the DNFS taking the list of files from SQL, and the files from the disk).
I tried to find the
Options
header list, on the source code, found all the HTTP Methods.I am trying to remove the
COPY
,MOVE
, etc, but could not remove them, as they scan forIHandler
without the option to disable it .For now I was found this (ugly) way, but Windows is trying to update the files or create files like
desktop.ini
, and similar.I tried also to rewrite the
AddWebDav
function, but its a ugly workaround.How to implement a
ReadOnly
attr, so the client will recognise the status and will not try to modify/lock the files ?The text was updated successfully, but these errors were encountered: