Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently working on a project where I'm adding docx-files to the Layout folder in Visual Studio and then use those ducment files to create Content Types.

The problem is that I can't get the document files programmatically. Using the web browser I can get the files but not using web.GetFolder();. The code is running in a Feature Receiver when a feature is activated.

SPSite site = properties.Feature.Parent as SPSite;
SPWeb web = site.RootWeb;

SPFolder docTempFolder = web.GetFolder("_LAYOUTS/Projekt/DocumentTemplates");

This code give me a collection with zero files.

What am I doing wrong?

Thanks for helping.

share|improve this question
possible duplicate of Get Directory Path to 12 Hive programmatically – Goyuix Sep 28 '12 at 19:30

1 Answer

up vote 1 down vote accepted

SPFolder is for getting objects from SharePoint document libraries/lists. You can't access files in your file system (the 14 hive) by trying to cast them as an SPFolder. Also you can't use SPWeb.GetFolder as the files are nowhere near your web. They are on your harddisk.

You could get the 14 hive by using GetGenericSetupPath, so something like this would work:

var path = SPUtility.GetGenericSetupPath(@"TEMPLATE\LAYOUTS\Projekt\DocumentTemplates");

This path you could now Access with regular stream readers, System.IO.File etc.

share|improve this answer
Thank you for the help. – carruw Jun 19 '12 at 14:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.