Tagged Questions
0
votes
0answers
7 views
Destination Folder field not showing in Upload.aspx
I have a doc lib with 4 folders. when I am at the root and click add, Upload.aspx does not contain the field destination folder. I have the same structure on another site and it works fine. i cant ...
0
votes
1answer
20 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"))
{
...
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 ...
0
votes
1answer
33 views
Create a tree of folders in the list instance of a document library
I created a document library list (in visual studio) and I want to set a tree of folders in the list instance not programmatically but in the element.xml file
1
vote
3answers
80 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 ...
0
votes
1answer
54 views
Search for specific folder in library with CAML
I'm looking for a way to search for folder which name starts of 'Foo' using caml query in list. How can I narrow results to return only folders?
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 ...
1
vote
1answer
191 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 ...
0
votes
1answer
100 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 ...
4
votes
2answers
362 views
Get all Files from sub folder of a certain content type
my problem is I have a document library with sub folders. Also the document library got more than one content type.
Is there a way to create a CAML or LINQ query to get all files of a certain content ...
2
votes
2answers
207 views
Get content Type order in C#
I am building a web part that would be added to the bottom of every library view and would display the folder content types making it easy to create a new folder (rather than having to go to documents ...
2
votes
1answer
631 views
“+ Add Document” link missing for some users
Running SharePoint 2010. I have a library that has a folder for each user. Each user has contribute rights to their own folder. However, for some users, even if I give them Full Control, they never ...
1
vote
0answers
71 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 ...
2
votes
1answer
160 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
3answers
1k views
Creating Nested Folders via Client Object Model
I'm trying to create nested folders in my document library so it looks like this:
http://site/PublicDocuments/Folder1/Folder2/Folder3/
The document library "Public Documents" exists but none of the ...
0
votes
2answers
231 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 ...
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
...
1
vote
1answer
1k views
How to change folder properties inside a sharepoint library
We have an existing SharePoint library that was created years ago for project management. The users who used to manage it are no longer with the company.
The library is setup with multiple folders. ...
0
votes
3answers
3k views
Count of Files Under a Folder in a Document Library
Is there a way to get a count of the files under a folder in a SharePoint 2010 (enterprise) document library?
1
vote
1answer
843 views
Security on Document Library's item
i need to add some security to a Document Library, i want to be able to have multiple folders and multiple documents. This feature would provide users with proper right to modify, read, hide documents ...
0
votes
1answer
365 views
Deploy document library with multiple content type
I have a Document Library definition that I added to the solution. I want to include multiple content types for this Document Library: one that inherits from Folder and one that inherits from ...
1
vote
1answer
177 views
Folder Heirarchy in Sharepoint 2010 document library?
How many nested folders can we have in document library in Sharepoint 2010?
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) ...
3
votes
1answer
1k views
Using Folders Within Document Sets in SharePoint 2010
With the New Folder option turned on for a document library that has document sets enabled, the New Folder option is only available on the library itself, not within a Document Set. When viewing in ...
1
vote
2answers
542 views
Changing the Name of a SPFolder
I am trying to update the name of a folder with the code below:
folder.Item[SPBuiltInFieldId.Title] = "New folder name";
folder.Item.SystemUpdate();
I can see that the Title field of the item ...
4
votes
2answers
791 views
Make a folder in a document library read only without using security
I have a document library with about 25,000 folders in it, each folder represents a task in our task system and is used as a document repository for those tasks.
Of the 25,000 tasks about 22,000 are ...
1
vote
2answers
744 views
How can I query all of the items which are inside a folder, which is in turn inside a document library?
I am trying to use Powershell to query my Sharepoint site so I can get a list of items to use as input in my migration script. I have a document library (Site Assets), which has a folder (Calendar ...
0
votes
1answer
449 views
Why mixed Folder with files after disabling New Folder
I created a document library in SharePoint 2010 and created many files and folders. In the default view (All Documents) the folders display first, followed by files (just as Windows Explorer does).
...
6
votes
3answers
2k views
Show folders in document library that have a filter view
I am using SharePoint 2010
I have a document library with a view that Filter items only when a particular Column is true.
The problem now is that when I have a filter in my view the folders in my ...
2
votes
1answer
336 views
Upload a file into new document upon folder creation
I have a document library in which I want to store folders (people). Each folder have some metadata (person's properties). Then in each such folder I will hold documents (files) associated with ...
3
votes
3answers
3k views
Why are documents inside a folder not showing when a filter is applied?
I added a custom column called Project (string) to a Document List.
I then set different views in different pages to filter on that column.
The problem is that, when applying the filter, documents ...
5
votes
2answers
4k views
How to move items between folders Document List?
Is it possible to move documents between different folders in Document List?
EDIT: I mean possible for a sharepoint standard user, not an admin.
For example, suppose that my Document Library has two ...
0
votes
2answers
2k views
Rename file in a document library folder
This is all good except my file is located in a folder called "Shared Folder" under shared documents library.
SPSite oSite = new SPSite ("http://<sitename>/");
SPWeb oWeb = ...

