Hi, I,m using libcurl for a FUSE fs. It works very good. See:
https://github.com/stefbon/fuse-workspace This program is a "super" fuse fs, it offers (at this moment) two mountpoints in the users homedirectory like: ~/Devices and ~/Network In the network map the Windows Network is supported, and initial support for access to FTP servers. (for ftp right now only opendir/readdir/closedir is supported, not file transfer). In the devices map access to an audio cd is supported. I've got an issue. the fuse fs does to read the direntries a new call to get the contents of a directory, everytime. Now - cause ftp is known for the fact that contents do not change much - I'm looking for a way to determine a directory on a server has changed. On local filesystems, the attributes of the directory is changed when an entry is added or removed. Is there a way to get the attributes of a directory with one single call? Futher right now I'm using the curl easy interface, I'm curious the multi interface offers some extra abilities? Stef the Netherlands ------------------------------------------------------------------- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http://curl.haxx.se/mail/etiquette.html
