for file in ./nyc-wtc-docs/*; do
    # Check if it's a regular file (not a folder)
    if [ -f "$file" ]; then
        #echo "Processing: $file"
        pageCount=$(pdfinfo "$file" | grep "Pages" | awk '{print $2}')
        echo "$pageCount    $file" >> page_distribution_names.csv
    fi
done