Se sei in una shell Linux/Unix puoi provare
for filename in *; do mongoimport -d mydb -c $filename; done
Se sei su Windows:
FOR %i IN (C:\mongodbData\*.json) DO mongoimport --db dbName --collection colection --type json --file %i
Se sei in una shell Linux/Unix puoi provare
for filename in *; do mongoimport -d mydb -c $filename; done
Se sei su Windows:
FOR %i IN (C:\mongodbData\*.json) DO mongoimport --db dbName --collection colection --type json --file %i