問題描述
NodeJs 在 fs/io 操作方面非常出色,但我無法使用它來訪問共享(用于存儲)本地網絡驅動器.
NodeJs is great when it comes to fs/io operations, but I couldn't use to access a shared (for storage) local network drive.
filesystem.writeFile('\192.168.1.1 est.txt', 'data!', function(error){ ... });
我得到了 UNKNOWN_ERROR 這沒有幫助!上面的 IP 可以通過資源管理器(我在 Windows 上)毫無問題地訪問,并且可寫(對于我的 windows 用戶).
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).
這里有什么問題?!
推薦答案
請記住,在 JavaScript 字符串文字中, 是轉義字符.您要求寫入的實際文件名是
192.168.1.1<tab>est.txt
(其中 <tab>
表示制表符),因為\
=> 和
=>標簽.
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
=> 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){ ... });
這篇關于使用 node js 訪問本地網絡驅動器的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!