In a Windows environment, I\'m trying to load a .csv file with statement:
LOAD CSV WITH HEADERS FROM \"file:///E:/Neo4j/customers.csv\" AS row
The easiest way (be ware of security) is to serve you directory over http and use the http import
Python 2 $ python -m SimpleHTTPServer 8000 Python 3 $ python3 -m http.server 8000 - Now you can load your files from your local host LOAD CSV FROM 'http://localhost:8000/mycsvfile.csv' AS row return row - you can actually expose files on one host and load them where your DB is running by exposing the folder and replacing localhost with your IP