Github user rodms10 commented on a diff in the pull request:

    https://github.com/apache/cordova-plugin-file/pull/64#discussion_r15371710
  
    --- Diff: src/firefoxos/FileProxy.js ---
    @@ -54,6 +53,32 @@ QUIRKS:
         var DIR_SEPARATOR = '/';
         var DIR_OPEN_BOUND = String.fromCharCode(DIR_SEPARATOR.charCodeAt(0) + 
1);
     
    +    var pathsPrefix = {
    +        // Read-only directory where the application is installed.
    +        applicationDirectory: location.origin + "/",
    +        // Root of app's private writable storage
    +        applicationStorageDirectory: null,
    +        // Where to put app-specific data files.
    +        dataDirectory: 'file:///persistent/',
    +        // Cached files that should survive app restarts.
    +        // Apps should not rely on the OS to delete files in here.
    +        cacheDirectory: 'file:///temporary/',
    +        // Android: the application space on external storage.
    +        externalApplicationStorageDirectory: null,
    +        // Android: Where to put app-specific data files on external 
storage.
    +        externalDataDirectory: null,
    +        // Android: the application cache on external storage.
    +        externalCacheDirectory: null,
    +        // Android: the external storage (SD card) root.
    +        externalRootDirectory: null,
    +        // iOS: Temp directory that the OS can clear at will.
    +        tempDirectory: null,
    +        // iOS: Holds app-specific files that should be synced (e.g. to 
iCloud).
    +        syncedDataDirectory: null,
    +        // iOS: Files private to the app, but that are meaningful to other 
applciations (e.g. Office files)
    +        documentsDirectory: null
    +    };
    +
    --- End diff --
    
    No, they'll all default to null. I kept them here more for documenting 
what's available. I can remove if you prefer.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to