我正在尝试将文件夹选择器添加到我的节点webkit应用程序中。看一下我可以使用的文档:
<input type="file" nwdirectory />
但是这些似乎仍然会返回文件的数量,这是不应该做的。
这是测试代码,
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<body>
<input type="file" id="fileDialog" nwdirectory />
<script>
function chooseFile(name) {
var chooser = $(name);
chooser.change(function(evt) {
console.log($(this).val());
});
chooser.trigger('click');
}
chooseFile('#fileDialog');
</script>
</body>
</html>
如何获取文件夹路径,然后我将使用fs模块
由于
答案 0 :(得分:2)
编辑:这看起来像v0.12.0 Alpha中的回归问题,因为它似乎在v0.11.5中正常工作。
希望这对你有所帮助。