tools/url-checker/url_checker.py [519:530]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if any(os.path.abspath(root).startswith(excluded) for excluded in abs_exclude_folders):
            print(f"Skipping excluded directory: {root}")
            dirs[:] = []  # Skip all subdirectories
            continue
        
        for file in files:
            file_ext = os.path.splitext(file)[1].lower()
            # Check if this is a supported file type
            if file_ext in SUPPORTED_FILE_TYPES:
                files_to_check.append(os.path.join(root, file))
    
    return files_to_check
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tools/url-checker/url_checker.py [557:567]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if any(os.path.abspath(root).startswith(excluded) for excluded in abs_exclude_folders):
            print(f"Skipping excluded directory: {root}")
            dirs[:] = []  # Skip all subdirectories
            continue
            
        for file in files:
            file_ext = os.path.splitext(file)[1].lower()
            # Check if this is a supported file type
            if file_ext in SUPPORTED_FILE_TYPES:
                files_to_check.append(os.path.join(root, file))
    return files_to_check
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



