我有以下代码将文件放在文档库中:
public static void UploadFile(string siteURL, string libraryName, string file)
{
String fileToUpload = file;
String sharePointSite = siteURL;
String documentLibraryName = libraryName;
using (SPSite oSite = new SPSite(sharePointSite))
{
using (SPWeb oWeb = oSite.RootWeb)
{
if (!System.IO.File.Exists(fileToUpload))
throw new FileNotFoundException("File not found.", fileToUpload);
SPFolder myLibrary = oWeb.Folders[documentLibraryName];
// Prepare to upload
Boolean replaceExistingFiles = true;
String fileName = System.IO.Path.GetFileName(fileToUpload);
FileStream fileStream = System.IO.File.OpenRead(fileToUpload);
// Upload document
SPFile spfile = myLibrary.Files.Add(fileName, fileStream, replaceExistingFiles);
// Commit
myLibrary.Update();
}
}
}
我想将文件放在名为“Nav”的库中的文件夹中我不知道如何实现这一点..我已经尝试但无法将其放入文件夹中。
这是我最近的努力:
SPFolder myLibrary = oWeb.Folders[documentLibraryName].SubFolders["Nav"];
想法?
答案 0 :(得分:0)
这最终为我工作:
SPFolder myLibrary = oWeb.Folders[documentLibraryName];
SPFolder subFolder = myLibrary.SubFolders["Nav"];
看起来很乱,但它确实有效..所以我会活下去。