public bool CreateFolder(string name, string path = null)
        {
            string batchId = null;

            client.CreateBatch(out batchId);

            var result = client.CreateFolder(
                new BatchHeader()
            {
                BatchID = batchId
            },
                name,
                path ?? "/",
                new Property[0]);

            client.ExecuteBatch(new BatchHeader()
            {
                BatchID = batchId
            });
            return(true);
        }