SPFolder.MoveTo 方法
将该文件夹和其内容移动到位于指定 URL 的新文件夹中。
命名空间: Microsoft.SharePoint
程序集: Microsoft.SharePoint(位于 Microsoft.SharePoint.dll 中)
语法
声明
Public Sub MoveTo ( _
strNewUrl As String _
)
用法
Dim instance As SPFolder
Dim strNewUrl As String
instance.MoveTo(strNewUrl)
public void MoveTo(
string strNewUrl
)
参数
strNewUrl
类型:System.String一个字符串,指定新文件夹的 URL。
备注
MoveTo方法仅适用于单个站点的上下文。
示例
下面的代码示例将移动指定的子文件夹在站点中从一个文件夹到另一个文件夹。
Dim site As SPWeb = SPControl.GetContextWeb(Context)
If site.GetFolder("Shared Documents/Source_Subfolder_Name").Exists Then
Dim moveFolder As SPFolder = web.GetFolder
("Shared Documents/Source_Subfolder_Name")
moveFolder.MoveTo("DocLib_Name/Destination_Subfolder_Name")
End If
SPWeb oWebsite = SPContext.Current.Web;
if (oWebsite.GetFolder("Shared Documents/Source_Subfolder_Name").Exists)
{
SPFolder oFolderSrc = oWebsite.GetFolder("Shared Documents/Source_Subfolder_Name");
oFolderSrc.MoveTo("DocLib_Name/Destination_Subfolder_Name");
}