AcManager.Tools.Managers.CarSetupsDirectories.TestArgs C# (CSharp) 메소드

TestArgs() 개인적인 메소드

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