I wonder is it possible to keep list of files or folders opened before on sandboxed app without re-opening them or copying to it's own library ?

Thanks in advance

link|improve this question

73% accept rate
feedback

1 Answer

up vote 0 down vote accepted

At this time only using temporary entitlements.

You should use something like

<plist version="1.0">
    <dict>
        <key>com.apple.security.app-sandbox</key>
        <true/>
        <key>com.apple.security.files.user-selected.read-write</key>
        <true/>
        <key>com.apple.security.temporary-exception.files.absolute-path.read-write</key>
        <array>
            <string>absolute path to use</string>
        </array>
    </dict>
</plist>

I hope Apple will clarify how this can be done without 'temporary' solutions because it breaks many many apps

link|improve this answer
Hi, I meant the files were added by user (open panel or drag and drop), not absolute path – Irwan Jan 18 at 9:01
the parameter can be set to "/", due to a bug in sandbox you must specify a double backslash "//" (without quotes) – dafi Jan 18 at 9:05
That's a double forward-slash, not a double backslash. Forward slash: "/", backslash: "\". – Rob Keniger Jan 18 at 13:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.