mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-20 15:49:32 -06:00
FF-1173 - updated for new file service
This commit is contained in:
@@ -144,6 +144,12 @@ public class DeleteSourceDirectory : Node
|
||||
{
|
||||
args.Logger?.ILog("File: " + file);
|
||||
}
|
||||
|
||||
if(files.Any(x => x.EndsWith(".fftemp")))
|
||||
{
|
||||
args.Logger?.ILog("Temporary FF file found, cannot delete.");
|
||||
return 2;
|
||||
}
|
||||
|
||||
if (IncludePatterns?.Any() == true)
|
||||
{
|
||||
|
||||
11
SiteScraping/GlobalUsings.cs
Normal file
11
SiteScraping/GlobalUsings.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
global using System;
|
||||
global using System.IO;
|
||||
global using System.Collections.Generic;
|
||||
global using System.Linq;
|
||||
global using System.Net.Http;
|
||||
global using System.Text.RegularExpressions;
|
||||
global using System.Threading;
|
||||
global using System.Threading.Tasks;
|
||||
|
||||
global using FileFlows.Plugin;
|
||||
global using FileFlows.Plugin.Attributes;
|
||||
Reference in New Issue
Block a user