SharePoint:如何使用 Web 服务在文档库中创建文件夹
我需要在 SharePoint 的文档库中创建一个简单的文件夹,但我似乎找不到有关该主题的文档片段。
dws webservice 似乎用于在工作区中创建物理文件夹,我需要一种在文档库中创建文件夹的方法。
不知道该怎么办,请帮忙
I need to create a simple folder in a document library in SharePoint, but I can't seem to find a scrap of documentation on the subject.
The dws webservice seems to be used to create physical folders in a workspace, I need a way to create a folder in a document library.
Not sure what to do , please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我发现这个方法有效:
I found this method to work :
这是使用 apache HttpClient 的 JAVA 中类似请求的代码
创建 httpClient 并调用 makeFolder 函数
This is the code for similar request in JAVA using apache HttpClient
Code to create the httpClient and call the makeFolder Function
我知道这是一个相当老的问题,但如果其他人发现它,我就是这样做的:
我使用的是 silverlight,这就是我使用上传字符串异步的原因,但这可以通过其他方式完成http post 方法
I know this is a pretty old question, but in case someone else finds it, this is how I've done it:
I was using silverlight, which is why I used upload string async, but this can be done other ways with the same http post method
我已经使用 Web 服务完成了一些工作,但找不到任何创建文件夹的代码。但是,我有使用 UNC 路径将文件从网络共享复制到 SharePoint 文档库中的现有文件夹的代码。它使用 System.IO.File - 也许您可以使用该技术来创建文件夹?
I've done some work with the Web services but I can't find any code that creates a folder. However, I have code that copies files from a network share to an existing folder in a SharePoint document library using UNC paths. It uses System.IO.File - perhaps you could use that technique to create a folder?
使用 文档工作区 Web 服务 (Dws) 在共享点中创建文件夹)。效果很好。
Created folders in sharepoint by using Document Workspace Web Service (Dws). Works great.