Nếu bạn đang sử dụng Linux / Unix shell, bạn có thể thử
for filename in *; do mongoimport -d mydb -c $filename; done
Nếu bạn đang sử dụng Windows:
FOR %i IN (C:\mongodbData\*.json) DO mongoimport --db dbName --collection colection --type json --file %i