Discuss this help topic in SecureBlackbox Forum

WebDAV: Create a collection (directory)

After you have initialized the WebDAV client, use TElWebDAVClient.CreateCollection() method create a collection (directory). CreateCollection has two overloads. The first one lets you specify the complete URI of the new collection. The second one accepts

Examples:

C#:


TElWebDAVClient cli = new TElWebDAVClient();
cli.BaseURL = @"http://remote.com/dav_folder";

cli.CreateCollection(@"http://remote.com/NewCollection", null);

How To articles about WebDAV client

Discuss this help topic in SecureBlackbox Forum