not really having much luck at the moment...sorry, although I did get pointed in the direction of an app called the "SharePoint Solution Generator" which may help, but I havent looked at it yet
I need the same thing, I need to extract documents from my sql 2005 database because my Sharepoint 2007 its dead and without backup, i only have the DB
SPList lst; //Put the code here in order to get access to the list that contains the attachment
SPListItemCollection itemcol = lst.Items; foreach (SPListItem lstitem in itemcol) { SPAttachmentCollection atchcol = lstitem.Attachments; string attachmentURL = lstitem.Attachments.UrlPrefix; string documentURL = attachmentURL + atchcol[0]; //Now you have the URL of the attachment you can use this URL. }
documents extraction
CodePfo
Phil Rogers
Hi Mark, Did you find how
I need the same thing, I need to extract documents from my sql 2005 database because my Sharepoint 2007 its dead and without backup, i only have the DB
Jake Reynolds
Paul Stovell
Hi,
Try this
Thanks
Arjuna.