gpt4 book ai didi

json - 使用 mongoimport 从 Windows 文件夹批量导入 MongoDB

转载 作者:行者123 更新时间:2023-12-01 23:45:44 32 4
gpt4 key购买 nike

我的存档中有很多 json 文件,我需要将它们导入到 mongo 每一个操作中(我认为它可能是循环的)。您对此有什么想法吗?

最佳答案

如果您使用的是 Linux/Unix shell,您可以尝试

for filename in *; do mongoimport -d mydb -c $filename;  done

如果您使用的是 Windows:

FOR %i IN (C:\mongodbData\*.json) DO mongoimport --db dbName --collection colection --type json --file %i

关于json - 使用 mongoimport 从 Windows 文件夹批量导入 MongoDB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22167237/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com