Skip to content

Instantly share code, notes, and snippets.

@artanisdesign
Created February 24, 2012 18:00
Show Gist options
  • Save artanisdesign/1902426 to your computer and use it in GitHub Desktop.
Save artanisdesign/1902426 to your computer and use it in GitHub Desktop.
no more file cache in titanium
var a = Titanium.Filesystem.getFile( Titanium.Filesystem.applicationDirectory, "../Library/Caches/ASIHTTPRequestCache/SessionStore/" );
if( a.exists() ) {
a.deleteDirectory(true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment