mongorestore imports all exported mongodb files
cd C:\Program Files\MongoDB\Server\4.0\bin mongorestore.exe -d <db name> C:\Users\Mike\Downloads\myProject\
But if you really want to import all only JSON meta files without .bson
cd C:\Users\Mike\Downloads\myProject\ FOR %i IN (*.json) DO "C:\Program Files\MongoDB\Server\4.0\bin\mongoimport.exe" --db <db name> --collection %~ni --type json --file %i
This is a sample of work on Windows 10
Mikhail Kudryavtsev
source share