Hello the list,
i have a question about the api slide client.
What is exactly the difference between the two objects WebdavFile and the
WebdavResource ?
Wich object is the best in order to manipulate file?
For my short experience it seems that the WebdavResource works better than WebdavFile.
Is it possible?
For example i succeed to create a file with these lines :
HttpURL url = new HttpURL(p_path);
WebdavResource res = new WebdavResource(url);
res.putMethod(url.getPath()+"/"+p_fileName,content);
but if i tried like this with the WebdavFile it doesn't work :
HttpURL url = new HttpURL(p_path);
WebdavFile file = new WebdavFile(url);
file.mkdir();
When i try to create a directories tree with WebdavResource, i can't , i must to create
the directory level by level, even if i set the default depth to infinity.
If you can help me, or send me some link on examples?
regards,
jp
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]