Sharepoint 2010 ECMAScript – Get all documents from document library

Below is a code snippet to Retrieve all the Files in a Specified document library using ECMAScript\Javascript object model.
For testing purposes you can copy and paste the script in a Content editor webpart. I have used
Shared Documentsa document library for testing. The below code will only retrieve documents from the root of the document library and not from sub-folders.

<script type=”text/ecmascript”>
function ViewAllFiles()
{
var context = new SP.ClientContext.get_current();
var web = context.get_web();
var list = web.get_lists().getByTitle(‘Shared Documents’);
var query = SP.CamlQuery.createAllItemsQuery();
allItems = list.getItems(query);
context.load(allItems, ‘Include(Title, ContentType, File)’);
context.executeQueryAsync(Function.createDelegate(this, this.success), Function.createDelegate(this, this.failed));
}
function success()
{
var fileUrls = “”;
var ListEnumerator = this.allItems.getEnumerator();
while(ListEnumerator.moveNext())
{
var currentItem = ListEnumerator.get_current();
var _contentType = currentItem.get_contentType();
if(_contentType.get_name() != “Folder”)
{
var File = currentItem.get_file();
if(File != null)
{
fileUrls += File.get_serverRelativeUrl() + ‘\n’;
}
}
}
alert(fileUrls);
}
function failed(sender, args) {
alert(“failed. Message:” + args.get_message());
}
</script>
<a href=”#” onclick=”Javascript:ViewAllFiles();”>View All Files</a>​

Related Post :
Get all Folders using Ecmascript\Javascript client object model SharePoint 2010

Get Files from a specific Folder Ecmascript\Javascript client object model SharePoint 2010

Related Posts