views:

58

answers:

1

What's the best way to create a temporary file in Android? Can [File.createTempFile][1] be used? The documentation is very vague about it.

[1]: http://developer.android.com/reference/java/io/File.html#createTempFile(java.lang.String, java.lang.String)

A: 

You could start with this thread in stackoverflow, where temp-files are discussed.

BennySkogberg