Questions tagged [sharepointdocumentlibrary]

A document library is a place on a SharePoint site where users can create, collect, and update files with others. The libraries may be custom modified and allow different access levels.

A document library is a place on either a SharePoint Online or Sharepoint Server site where users can create, collect, and update files with others.
The libraries may undergo custom modifications:

Access to the library is granted on the basis of permissions which can be granted to internal Sharepoint users or external. The permissions have different levels, such as read-only and contribute: http://office.microsoft.com/en-001/windows-sharepoint-services-help/permission-levels-and-permissions-HA010100149.aspx

Access to the library may be granted for a document, list item or a whole folder: http://office.microsoft.com/en-001/sharepoint-server-help/manage-permissions-for-a-list-library-folder-document-or-list-item-HA010021564.aspx

You may also grant access to external users (given right permissions) http://office.microsoft.com/en-001/sharepoint-server-help/sharepoint-document-libraries-i-introduction-to-sharing-files-RZ010234528.aspx?section=3

Sharepoint libraries accept selected file types and some document types, like .aspx may be added to a Sharepoint library: http://office.microsoft.com/en-001/office365-sharepoint-online-small-business-help/types-of-files-that-cannot-be-added-to-a-list-or-library-HA101907868.aspx

Their content may be accessed by apps you are developing, e.g. using NAPA, Visual Studio: http://msdn.microsoft.com/en-us/library/office/fp179930.aspx

182 questions
0
votes
1 answer

Which SDK or API should I use to list and upload files into Office 365 sharepoint document libraries

What is the best way now (and in the near future) to list, upload and download files in a document library in Office 365 Sharepoint? I'm looking for .NET SDK's. There doesn't seem to be much support documentation available that targets this topic.…
gsharp
  • 71
  • 8
0
votes
1 answer

How do I know if the user selected a SharePoint file in OpenFileDialog?

In an OpenFileDialog, the user can enter the address of the SharePoint site and select a document in the document library. I need to provide check-in/check-out integration for SharePoint documents. Is there any way to determine if the file is…
0
votes
1 answer

How to create nested folders in document library using rest api SharePoint 2013

I want to create nested folders in document library using rest api with single call. I have project Name with that I want to create a folder in document library, in side project name folder I want to create individual folders for each…
0
votes
1 answer

Document library not visible in Sharepoint but can be seen in mapped drive

There is one folders named companyassets in the mapped network drive that I have created for a SharePoint 2013 website. when I try to edit/delete a file(companyassets/js/main.js) it gives error that the file is either checked out or locked. Also, I…
0
votes
0 answers

Getting Error when opening document from document Library in sharepoint2013

User has full control to the Document Library and also the items in the document Library. When the user is try to open file (excel or word or pdf) from the Document Library. It is showing an error with the file name as showing below. But When the…
0
votes
1 answer

Unable to View Content of the Document Library in SharePoint 2013

I am the site collection administrator of one application. One specific user cannot able to see the content of the document library. He is provided with the full control over the site as well as that specific document library. He is able to access…
0
votes
0 answers

Sharepoint 2013 Document library Edit Properties not opening in a dialog box

We are migrating to SP2013 from SP2010. In SP2010 environment, we were using our own custom webpart to view and edit properties with two buttons "View Properties" and "Edit Properties" as following:
0
votes
1 answer

How to hide items that the end date has passed on document library?

I have searched throughout the net but still cannot figured out. I have a SharePoint document library where i have start date and end date. I would like to know how to tell SharePoint to hide the items once the end date has passed? Thank you in…
0
votes
1 answer

Caml Query returning null

I was trying to retrieve documents from document library using CAML Query, but this query returns null. Please help to solve this. SPDocumentLibrary oDocumentLibrary = (SPDocumentLibrary)oWebsite.Lists["SampleDocument"]; SPQuery query = new…
0
votes
1 answer

Why does this Sharepoint Files.Add() result in an I/O Error?

With this code: using (var ms = new MemoryStream()) { using (var doc = new Document(PageSize.A4, 25, 25, 10, 10)) { //Create a writer that's bound to our PDF abstraction and our stream using (var…
0
votes
2 answers

Sharepoint's "New Folder" doesn't ask for a required field

I am using Web Part Connections to filter documents in a documents library in SharePoint. To do this, there's a column that is required, which I've named "related contact." Here's my problem: When I go add a New Folder (instead of just a document)…
0
votes
1 answer

How to delete documents from a document library in WSS 3.0?

I need a way to programmaticaly delete documents from Sharepoint 2007 document library. I don't have access to the server to deploy server-side code, so it needs to be via web service or pure http. I can find plenty of examples for removing…
Antoine
  • 5,055
  • 11
  • 54
  • 82
0
votes
0 answers

the table contains a string that is too long for excel to display. if you edit the long value some data might be lost

I have a sharepoint document library. On exporting to excel i get the message "the table contains a string that is too long for excel to display. if you edit the long value some data might be lost". Why is this message being displayed, and how to…
0
votes
1 answer

Download file without taking ownership

I have a few files in a document library which were never checked-in. I have that list of files available through the document library settings page or in c# using SPDocumentLibrary.CheckedOutFiles Is there a way that I can download those files…
Saksham
  • 9,037
  • 7
  • 45
  • 73
0
votes
1 answer

Sharepoint mail enabled library receives csv file, import into list

I am wondering what the best approach is (if any) to handle this scenario: I will set up a mail enabled library to which an external party can send emails with a csv file attached. What i want to do next is, on each received file into this library…