[TIMOB-2035] Titanium.UI.createTempFile() does not add extension properly
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Invalid |
Resolution Date | 2017-07-13T18:41:51.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | Android |
Labels | android, extension, filesystem |
Reporter | cfenzo |
Assignee | Ingo Muschenetz |
Created | 2011-04-15T03:08:43.000+0000 |
Updated | 2017-07-13T18:42:32.000+0000 |
Description
Titanium.UI.createTempFile() creates a temp file without extension.
On line 53 in FileSystemModule.java, the following is
executed:
File f = File.createTempFile("tifile", "tmp");
Should have been:
File f = File.createTempFile("tifile", ".tmp");
No test case provided, unable to reproduce, ticket marked as invalid.
We should check the behavior based on the information provided.
Closing ticket due to time passed and lack of progress for a number of years. Please open a new ticket if there are any problems.