A folder is a virtual container where files can be stored.
1
vote
3answers
78 views
Move Files from a SharePoint Library into a Folder
I have a problem. I want to move files from a SharePoint library into a folder using PowerShell. To be more specific I need to move all the files in the library for whose a SharePoint field value ...
1
vote
3answers
371 views
SharePoint document library permissions by level?
I've got a SharePoint document library with a folder structure as follows:
The library is called Customers. Inside of this library, there are about 150 folders for each of our different customers. ...
0
votes
2answers
55 views
Get All Items in a Folder (including ALL subfolders)
I am trying to get the count of the number of items in a SPFolder. I have tried several things so far however they seem to break once I add two subfolders. I want the total number of files in all ...
0
votes
2answers
230 views
getting my Document's parent sharepoint Folder
I have a sharepoint document library containing documents and folders (the folders are newly introduced as a new content type derived from folder) and I'm having an event reciever on document added ...
3
votes
1answer
2k views
Sharepoint document library folders
I've got a problem "browsing" folders in my Sharepoint 2010 document library.
In my opinion there are two ways of accessing folders, but I can't see the difference.
1) ...
2
votes
1answer
159 views
How to parse a SharePoint URL to get CSOM objects?
Let's say the only input I have from the user is the full URL to a folder in a Document Library called "Public Documents":
http://intranet.contoso.com/SubSite/PublicDocuments/Folder/SubFolder/
Using ...
1
vote
1answer
28 views
Unable to approve folder in Master Page Gallery
I am an administrator/developer and I have created a news site publishing site and all everything in the "Master Page Gallery" Needs to be approved. First I tried to use 'PublishingSite.PageLayouts' ...
1
vote
1answer
37 views
In a SharePoint List I cannot see items that are in a folder
I have a sharepoint list (Not Library), where I am programatically adding in a folder:
SPList list = web.Lists[ListID];
SPFolder parent = list.RootFolder;
SPFolder child = ...
1
vote
1answer
190 views
SharePoint 2010 Add new item link disappears with broken inheritance
Hello Stackexchange SharePoint masters :)
I've been a long time reader of this marvelous source of information but at long last I could not find a solution to a problem I encountered so I figured it ...
1
vote
1answer
517 views
Hide content type on “Add new item” ribbon button in folder
I have a problem which concerns hiding content types in the "Add new item"-Ribbon-Button.
In Visual Studio, I defined 2 custom content types (derived from the default folder content type) and a ...
0
votes
1answer
18 views
web.GetFolder() - value does not fall within the expected range. Sharepoint 2010
Below is the code to check if folder exist in doc library on a subsite and if not than create it.
using (SPSite site = new SPSite(sharePointSite))//"http://testsite.dev"))
{
...
0
votes
1answer
35 views
How to get SPListItemCollection from a SPFolder?
I am making a SharePoint 2010 visual web part, and I want to recursively iterate through all files in a document library which has nested folders. I can get a SPListItemCollection for all items and ...
0
votes
1answer
33 views
Setting permissions on folder not working
I am using SharePoint 2010.
I set permissions on my folder but yet everyone can still see and access the documents in the folder. What is going on here?
0
votes
1answer
22 views
About SPFolders & DocumentSets
I've been working in a feature for mi current project that involves folders. I've noticed that If you add files or subfolders to a folder and then you try to update the folder's metadata an exception ...
0
votes
1answer
101 views
Sharepoint 2010 search not showing folders in results
I am stumped by this pretty unusual problem. One user cannot see folders as results when searching. Only files within the folder are shown. Only one user has this problem. Many other users with the ...
0
votes
1answer
163 views
How to move a document from SharePoint folder to local directory in a drive?
I know there is a workflow to move documents from one folder (or a library) to a different one inside the SharePoint based on their approval status or version number etc. But I want to move the ...
0
votes
1answer
422 views
Create a folder structure in a discussion board
How can I create a folder structure in a discussion board? I have already tried this solution:
1) Create a new Site Content Type say called 'Thread Folder' based on the Folder Content Type with ...
1
vote
0answers
9 views
Set Created By field for Folder in Document Library
I need to migrate documents from xml to Document Library. We can use Files.Add method to create documents with created by and modified by fields. How can we update / create Folders in Document Library ...
1
vote
0answers
28 views
Connect to a Shared Folder on a new computer
I have been using SharePoint Shared Folders as a backup and synching mechanism for my working documents on my laptop. I created a Shared Folder (I called it "Synchronize") for myself and keep all my ...
1
vote
0answers
72 views
Unable to seperate normal and hidden folder such as “Forms” [SPFolder Object Model ]
While performing certain task in a console application, i am unable to separate normal folder and hidden ones such as "Forms","FormServerTemplates" etc. I am using SPFolder in the obejct model. I have ...
1
vote
0answers
70 views
“Choose folder” dialog in document library reacts really slow
While uploading a document into a library I want to choose in which folder the document should be uploaded.
When I choose a folder the PickerTreeView.aspx answers really slow.
Example image where ...
1
vote
0answers
125 views
Email to Document Library - Place attachments in sub folders
I am having issues with scheduling Crystal Reports to go into specified folders so I am taking a different route and using emails & attachments.
As the title suggests, I'd like to automate where ...
1
vote
0answers
362 views
Folder Content type gets lost when using a list template
I created a new folder content type that has several columns of data and then created some folders in a list using the content type. I then created a list template and included content. When I created ...
0
votes
0answers
24 views
Creating Document Libraries Using WebDav Interface
I am currently developing an app that uses the WebDav HTTP protocol to communicate and handle interactions with a Sharepoint site. While I can use a MKCOL request to create directories within a ...
0
votes
0answers
95 views
ItemUpdating event not firing on folder rename w/ Windows Explorer
I have an Item Updating event receiver that needs to fire when a document library folder is renamed. Everything works perfect when a user renames the folder with the SharePoint UI.
However, if ...
0
votes
0answers
66 views
Issues with saving Excel Document on close
I'm having some rather weird issues with one folder in my document library which contains about 4 Excel documents. Here is the sequence on what the users do to edit the files:
Click document > edit
...
0
votes
0answers
237 views
How to “link” two ListViewWebPart to look at the same RootFolder programmatically
I have a webpart which contains 2 ListView Web Part: one of them has a view that shows folder, the other one the docs.
The code I've written is this:
private ...
0
votes
0answers
443 views
SharePoint 2010 - Site Template with Folders
I have ran into an issue where a user has wanted to create a site template of a site that contains folders in a 'Shared Documents' web part.
When we create the site template and include the content ...
0
votes
0answers
237 views
Set ListViewWebPart to a specific Folder
I'm trying to put a ListViewWebPart on an Application Page.
I want to start the displayed document library in a specific folder, say "Folder 1".
I tried the following (as shown here):
...
0
votes
0answers
235 views
SP 2010 Folder navigation issue
We have a large document library with alot of folders (lets say 500), when we navigate forward using the page navigation at the bottom and then go back to the first page, SharePoint redirects/jumps to ...
0
votes
0answers
792 views
How to get RoleAssignment programmatically from a SPFolder without .Item
I need to get the permissions associated to a Folder.
I can get the folder by the getfolder method but the item has the .Item property null.
When i Access to the .DocumentLibrary i get the ...
