Specifying path param won't work
danivalls opened this issue · 0 comments
danivalls commented
Hello!
I'm trying to save the file into a specific path using the path property as the documentation says, but it won't work for me. windowStateKeeper keeps saving the file in the default path (app.getPath('userData')
).
This is how I'm trying to do it:
let mainWindowState = windowStateKeeper({
path: app.getPath('documents'),
file: 'window-state-my-app.json',
defaultWidth: 1000,
defaultHeight: 600
})
I guess I'm probably doing something wrong, any idea what could it be?