From 0dfe818848d1f16ee186e30d7449c6ecb3b2b035 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20M=C3=A9trailler?= Date: Thu, 10 Dec 2015 18:04:12 +0100 Subject: [PATCH] Adding support of ApplicationData.SharedLocalFolder --- src/windows/FileProxy.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/windows/FileProxy.js b/src/windows/FileProxy.js index 11604f5a2..266faa2fd 100644 --- a/src/windows/FileProxy.js +++ b/src/windows/FileProxy.js @@ -201,6 +201,12 @@ function getAllFS() { name: 'root', //nativeURL: 'file:///' winpath: '' + })), + 'shared': + Object.freeze(new WinFS('shared', { + name: 'shared', + nativeURL: nativePathToCordova(Windows.Storage.ApplicationData.current.sharedLocalFolder.path), + winpath: nativePathToCordova(Windows.Storage.ApplicationData.current.sharedLocalFolder.path) })) }; }