Path: | lib/davclient/simple.rb |
Last Update: | Tue Dec 06 21:46:33 +0000 2011 |
Change working directory.
Examples:
require 'davclient/simple' cd("https://example.webdav.org/collection/") content = get("index.html") print content
# File lib/davclient/simple.rb, line 21 21: def cd(args) 22: WebDAV.cd(args) 23: end
# File lib/davclient/simple.rb, line 29 29: def find(*args, &block) 30: WebDAV.find(*args, &block) 31: end