Reputation: 173
I have a folder with 620 file I need to load all to neo4j with one load command is this is possible
Upvotes: 1
Views: 1834
Reputation: 3054
The import-tool supports reading from multiple CSV source files, even using a regex pattern to select them. See http://neo4j.com/docs/operations-manual/current/#import-tool
Upvotes: 1
Reputation: 67019
You can concatenate all the files in that folder into a single file (e.g., cat * >all_data.csv
) and load that single file.
Upvotes: 1