Yes you can wild card the path of paths of CSV files. Assuming you are sourcing them from GCS your create BQ table query would be:
CREATE OR REPLACE EXTERNAL TABLE `project.dataset.table`
OPTIONS (
format = 'PARQUET',
uris = ['gs://gcs_bucket_name/folder-structure/*.parquet']
);