Documents and files
This section provides you with an overview of the Documents Module API and guides you through the common tasks when working with documents.
The Documents Module allows users to create document libraries and documents.
Sitefinity back-end provides you with a user-friendly interface to create albums and images. You can also create them programmatically using the Native or Fluent APIs.
The section contains the following:
-
Managing document libraries
Describes how to create, query, search, modify and delete document libraries using Native or Fluent API.
-
Managing documents
Describes how to create, query, search, modify and delete documents inside a document library using Native or Fluent API.
To manage document libraries and documents through the Native API, you must add the following namespaces to your class:
using Telerik.Sitefinity.GenericContent.Model;
using Telerik.Sitefinity.Libraries.Model;
using Telerik.Sitefinity.Modules.Libraries;
using Telerik.Sitefinity.Workflow;
To manage document libraries and documents through the Fluent API, you must add the following namespaces to your class:
using Telerik.Sitefinity;
using Telerik.Sitefinity.GenericContent.Model;
using Telerik.Sitefinity.Libraries.Model;
using Telerik.Sitefinity.Workflow;
See Also