I´m downloading a file to a SD card in the BlackBerry, and when I open that file, my application run. So when my application run, I need to delete that file.

The problem is that I dont know where it is(the file) from my app, because the user could download that file anywhere. Is there something in the BB OS that let me know the path of that file? With this I can give to my app a parameter or something...

Well, thats it.

link|improve this question

60% accept rate
feedback

1 Answer

If you register with invocation registry so that your app is invoked whenever file needs to be opened, you will get full URL in Invocation object. This URL is sufficient to delete the file via FileConnector.

See this BlackBerry example to properly register your app. Also, in step 6 note invoc.getURL() - this is what you need to use.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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