For some reason NW.SHELL fuctions are only working for files in root folder of my app. It wont let me use an absolute path or a relative path. Example “/relative/path/text.txt” or D:/relative/path/text.txt however text.txt will work with NW.SHELL function as long as the text file is in the same root DIR obviously.
This applies to both of these. What can i do to get relative or absolute paths to work? preferably relative paths. The nature of my program relative would be most functional.
JavaScript
x
3
1
nw.Shell.showItemInFolder('test.txt');
2
nw.Shell.openItem('test.txt');
3
Advertisement
Answer
Using version 0.65.0 of NW.js, it does work with absolute paths.
JavaScript
1
3
1
const path = require('path');
2
nw.Shell.openItem(path.resolve('./test.txt'));
3
If that doesn’t work, test.txt
is not in the current working directory.