Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

uploading documents with metadata in sharepoint

Status
Not open for further replies.

sp9999

Programmer
Nov 10, 2010
1
0
0
US
private void UploadFileToSharePoint(string strInputFileName, string sDocLibraryName) {
SPWeb site = SPContext.Current.Web;
SPList myList = site.Lists[sDocLibraryName];
string destFileUrl = myList.RootFolder.ServerRelativeUrl + @"/New.txt";
site.AllowUnsafeUpdates = true;
FileStream fileStream = File.Open(strInputFileName, FileMode.Open);
SPFile newFile = site.Files.Add(destFileUrl, fileStream, true/*overwrite*/);
newFile.CheckIn("File added");
SPListItem item = newFile.Item;
item.File.CheckOut();
Hashtable ht = new Hashtable();
ht.Add("Employee", employee.Text.ToString());
ht.Add(" Description", Description.Text.ToString());

ht.Add("Status", Status.SelectedIndex);
item.Update();
item.File.CheckIn("File with metadata");

}
and i am using this function to call UploadFileToSharePoint(@"C:\check.txt", "Project Status"/* name of Dc Library*/);

The problem is that file is getting uploaded but it's not attaching with the metadata ..can someone please review the code and tell me what's going on.

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top