提出问题提出问题
 

已答复document library of sharepoint

答案

  • 2009年7月4日 8:19Rajesh.Sitaraman 用户奖牌用户奖牌用户奖牌用户奖牌用户奖牌
     已答复包含代码
    SPSite mySite = new SPSite("http://YourSiteCollectionURL");
    SPWeb myWeb = mySite.AllWebs["YourSite"];
    
    SPFolderCollection myFolderCollection = myWeb.GetFolder("http://YourSiteCollectionURL/YourSite/YourLib").SubFolders;
    myFolderCollection.Add("FolderName");
    

    ---
    Rajesh (MCTS) My Blog

全部回复