Als je in een Linux/Unix-shell zit, kun je het proberen
for filename in *; do mongoimport -d mydb -c $filename; done
Als u Windows gebruikt:
FOR %i IN (C:\mongodbData\*.json) DO mongoimport --db dbName --collection colection --type json --file %i