Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any webdav or ftp server source code for iOS?

Tags:

ios

iphone

ipad

I need to implement a webdav or ftp server in iOS. Can someone suggest a webdav or ftp server open source project?

like image 668
user403015 Avatar asked May 11 '26 21:05

user403015


2 Answers

How about TouchHTTPD?

TouchHTTPD / Projects / iPhone WebDAV Server

TouchWebDAV Caveats

BASIC Auth Only (Digest auth coming soon)
No SSL
Not optimised for caching headers (If-*)
Cannot use Finder WebDAV and TouchWebDAV server on same machine!
WebDAV locking is totally fake.
Set attribute operations unsupported (so chmod, touch will not work)
like image 191
Kazuki Sakamoto Avatar answered May 14 '26 13:05

Kazuki Sakamoto


Try https://github.com/swisspol/GCDWebServer#webdav-server-in-ios-apps it seems to be good and active.

like image 33
unom Avatar answered May 14 '26 13:05

unom