NodeJs is great when it es to fs/io operations, but I couldn't use to access a shared (for storage) local network drive.
filesystem.writeFile('\\192.168.1.1\test.txt', 'data!', function(error){ ... });
I get UNKNOWN_ERROR which is not helping! The IP up there is accessible through the explorer (I am on windows) with no problem, and writable (for my windnows user).
What is the problem here ?!
NodeJs is great when it es to fs/io operations, but I couldn't use to access a shared (for storage) local network drive.
filesystem.writeFile('\\192.168.1.1\test.txt', 'data!', function(error){ ... });
I get UNKNOWN_ERROR which is not helping! The IP up there is accessible through the explorer (I am on windows) with no problem, and writable (for my windnows user).
What is the problem here ?!
Share Improve this question asked Jan 17, 2016 at 11:47 Dewan159Dewan159 3,0847 gold badges41 silver badges47 bronze badges 01 Answer
Reset to default 12Remember that in a JavaScript string literal, \
is an escape character. The actual filename you've asked that to write to is \192.168.1.1<tab>est.txt
(where <tab>
represents a tab character), because \\
=> \
and \t
=> tab.
To put a backslash in a string using a string literal, you need to escape it (with a backslash):
filesystem.writeFile('\\\\192.168.1.1\\test.txt', 'data!', function(error){ ... });