Files
FileFlowsPlugins/BasicNodes/SystemElements/IsWindows.cs
2024-07-06 11:04:13 +12:00

28 lines
882 B
C#

using FileFlows.Plugin;
namespace FileFlows.BasicNodes.SystemElements;
/// <summary>
/// A flow to determine if this is running on windows or not
/// </summary>
public class IsWindows : Node
{
/// <inheritdoc />
public override int Inputs => 1;
/// <inheritdoc />
public override int Outputs => 2;
/// <inheritdoc />
public override FlowElementType Type => FlowElementType.Logic;
/// <inheritdoc />
public override string Group => "System";
/// <inheritdoc />
public override string Icon => "fab fa-windows";
/// <inheritdoc />
public override string HelpUrl => "https://fileflows.com/docs/plugins/basic-nodes/system/is-windows";
/// <inheritdoc />
public override string CustomColor => "#2481e4";
/// <inheritdoc />
public override int Execute(NodeParameters args)
=> OperatingSystem.IsWindows() ? 1 : 2;
}