File Plugin
This plugin implements functions used for file handling.
The FilePlugin main actions, conditions, rules and API.
Terms
Work with Single File
Using the plugin to handle a file, you can perform the following operations:
Work with List of Files
Using the plugin to handle a list of files, you can perform the following operations:
Work with Directory
Using the plugin to handle directories, you can perform the following operations:
Work with Archive
Using the plugin to handle an archive, you can perform the following operations:
Download and Upload
Using the plugin for downloading and uploading files, you can perform the following operations:
Using the plugin for downloading and uploading directories, you can perform the following operations:
Installation and settings
Install the NuGet package: WorkflowEngine.NETCore-FilesPlugin.
Add the following namespaces to the section of using statements:
using OptimaJet.Workflow.Plugins;
Create a plugin object:
var filePlugin = new FilePlugin();
Connect the plugin to WorkflowRuntime:
var runtime = new WorkflowRuntime();
...
runtime.WithPlugin(filePlugin);