Since I use Neo4j 3.0.1, this cypher query:
USING PERIODIC COMMIT 500
LOAD CSV WITH HEADERS
FROM >"file:///home/user/Documents/links.csv" AS csvLine
...
returns
Couldn't load the external resource at: file:/home/user/Documents/neo4j-community-3.0.1/import/home/user/Documents/links.csv
Neo4j is located on my machine (Ubuntu 14.04), in the "Documents" folder, as the "links.csv" file.
(with a 2.xx version of neo4j this exact query was working perfectly)
I don't undersand why neo4j3.0 try to rebuild the csv file path in the "import" folder...
Uploading the file on ftp to query neo4j through http protocol works, so it's not about access permissions of the "import "folder". My "links.csv" file permission is 664.
Any idea ?