From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: To: 9fans@cse.psu.edu Subject: Re: [9fans] WebDAV file system From: "Russ Cox" MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Wed, 30 Oct 2002 01:29:34 -0500 Topicbox-Message-UUID: 11b1cd50-eacb-11e9-9e20-41e7f4b1d025 The hard part about ftpfs is parsing the directory listings and caching the results so that things like ls work reasonably. I can't figure out exactly what WebDAV means, but my first impression is that something like webfs might do nicely, assuming the set of valid names is reasonable. The arbitrary structure of the XML properties might get in the way. In any case, I think webfs is probably good to read just to get used to what's going on in a typical file server. Of all the ones I've written, I think webfs is particularly clean. nntpfs is pretty clean too, and quite a bit smaller.