fCraft.Paths.IsProtectedFileName C# (CSharp) Method

IsProtectedFileName() public static method

public static IsProtectedFileName ( [ fileName ) : bool
fileName [
return bool
        public static bool IsProtectedFileName( [NotNull] string fileName )
        {
            if ( fileName == null )
                throw new ArgumentNullException( "fileName" );
            return ProtectedFiles.Any( t => Compare( t, fileName ) );
        }