CurlFtpFS
alphaDescription
CurlFtpFS is a filesystem for acessing ftp hosts based on FUSE and libcurl. Automatically reconnects if the server times out.
CurlFtpFS Web SiteUser Ratings
User Reviews
-
Very useful! I wrote a GUI for it: https://sourceforge.net/projects/gcurlftpfs/
-
Works great, but needs the following fix for AIX ftp servers (from Linux client): diff curlftpfs-0.9.2/ftpfs-ls.c curlftpfs-0.9.2-fix/ftpfs-ls.c 57,58c57,58 < "%2s" SPACES < "%5s" "%*c" --- > "%2s" "%*c" > "%5c" "%*c" 68,69c68,69 < "%2s" SPACES < "%5s" "%*c" --- > "%2s" "%*c" > "%5c" "%*c" 75a76,78 > if (year[0] == ' ') > {year[0]=year[1];year[1]=year[2];year[2]=year[3];year[3]=year[4];year[4]=0;} > if (year[strlen(year)-1] == ' ') year[strlen(year)-1] = 0;
-
Easy to use and does it's job. +1 I have to study the caching options yet.