AcManager.Tools.Managers.Directories.InheritingAcDirectories.TestArgs C# (CSharp) Method

TestArgs() private method

private TestArgs ( FileSystemEventArgs e ) : bool
e System.IO.FileSystemEventArgs
return bool
        private bool TestArgs(FileSystemEventArgs e) {
            return e.FullPath.StartsWith(EnabledDirectory, StringComparison.OrdinalIgnoreCase) ||
                   DisabledDirectory != null && e.FullPath.StartsWith(DisabledDirectory, StringComparison.OrdinalIgnoreCase);
        }