You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2017/10/17 23:05:14 UTC

cordova-plugin-file git commit: fixing README in use of window.resolveLocalFileSystemURL

Repository: cordova-plugin-file
Updated Branches:
  refs/heads/master dc9639e8c -> 12f463698


fixing README in use of window.resolveLocalFileSystemURL

instead of non-existent window.requestLocalFileSystemURL

 This closes #218


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/commit/12f46369
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/tree/12f46369
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/diff/12f46369

Branch: refs/heads/master
Commit: 12f46369824d798451c3f52399714c6048907812
Parents: dc9639e
Author: Denny Biasiolli <de...@users.noreply.github.com>
Authored: Wed Oct 11 16:10:15 2017 +0200
Committer: Steve Gill <st...@gmail.com>
Committed: Tue Oct 17 16:04:17 2017 -0700

----------------------------------------------------------------------
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/blob/12f46369/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 1cde3a1..c1eea00 100644
--- a/README.md
+++ b/README.md
@@ -571,7 +571,7 @@ The File plugin allows you to do things like store files in a temporary or persi
 
 Before you use the File plugin APIs, you can get access to the file system using `requestFileSystem`. When you do this, you can request either persistent or temporary storage. Persistent storage will not be removed unless permission is granted by the user.
 
-When you get file system access using `requestFileSystem`, access is granted for the sandboxed file system only (the sandbox limits access to the app itself), not for general access to any file system location on the device. (To access file system locations outside the sandboxed storage, use other methods such as window.requestLocalFileSystemURL, which support platform-specific locations. For one example of this, see _Append a File_.)
+When you get file system access using `requestFileSystem`, access is granted for the sandboxed file system only (the sandbox limits access to the app itself), not for general access to any file system location on the device. (To access file system locations outside the sandboxed storage, use other methods such as window.resolveLocalFileSystemURL, which support platform-specific locations. For one example of this, see _Append a File_.)
 
 Here is a request for persistent storage.
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org