Applies to Umbraco 6.x and newer
The FileService acts as a "gateway" to Umbraco data for operations which are related to Scripts, Stylesheets and Templates.
Browse the API documentation for FileService.
- Namespace:
Umbraco.Core.Services - Assembly:
Umbraco.Core.dll
All samples in this document will require references to the following dll:
- Umbraco.Core.dll
All samples in this document will require the following usings:
using Umbraco.Core;
using Umbraco.Core.Models;
using Umbraco.Core.Services;
Please note that this page will be updated with samples and additional information about the methods listed below
The FileService is available through the ApplicationContext, but the if you are using a SurfaceController or the UmbracoUserControl then the FileService is available through a local Services property.
Services.FileService
Getting the service through the ApplicationContext:
ApplicationContext.Current.Services.FileService
Gets a single ITemplateObject object.
Delete a single ITemplateObject object.
Saves a single Template object.