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
In the Neo4j desktop select the database you are using, go to the setting and there you will find the solution... just comment the "dbms.directories.import=import" line
# This setting constrains all LOAD CSV
import files to be under the import
directory. Remove or comment it out to
# allow files to be loaded from anywhere in the filesystem; this introduces possible security problems. See the
# LOAD CSV
section of the manual for details.
dbms.directories.import=import ### COMMENT THIS LINE