I try to import CSV in a Neo4j Database and I have a problem.
On my desktop computer (windows 7, java 1.8.0_40-b25), the LOAD CSV works great. But on the server (window
I had the same problem. I solved it by putting ///
instead of F:/
or F:///
.
So if your source is
F:/FolderOne/FolderTwo/file.csv
It becomes
///FolderOne/FolderTwo/file.csv
Remember that in order to add the file you must put file:
in front of the source.
So finally
file:///FolderOne/FolderTwo/file.csv