最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Use node js to access a local network drive - Stack Overflow

programmeradmin4浏览0评论

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 0
Add a ment  | 

1 Answer 1

Reset to default 12

Remember 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){ ... });
发布评论

评论列表(0)

  1. 暂无评论