美文网首页
dialog 模块使用的时候,想只选择指定文件,不选择文件夹

dialog 模块使用的时候,想只选择指定文件,不选择文件夹

作者: 一沭丶 | 来源:发表于2017-11-03 17:01 被阅读24次

    dialog 模块使用的时候,想只选择指定文件,不选择文件夹

    选择文件夹

        dialog.showOpenDialog({
            properties: ['openFile', 'openDirectory']
        }, function(files) {
            if (files) event.sender.send('selected-directory', files);
        });
    

    选择指定文件(.diyrc)

        dialog.showOpenDialog({
            filters: [
                {name: 'diy', extensions: ['json']}
            ]
        }, function(files) {
            if (files) event.sender.send('selected-directory-auto', files);
        });
    

    相关文章

      网友评论

          本文标题:dialog 模块使用的时候,想只选择指定文件,不选择文件夹

          本文链接:https://www.haomeiwen.com/subject/ryntmxtx.html