Adobe AIR - applicationStorageDirectory - where is it?
When progamming an AIR application, you may want to make use of the applicationStorageDirectory available via the flash.filesystem package to store temporary files/folders. You can find where your system is storing these files by doing something like the following:
var f:File = File.applicationStorageDirectory.resolvePath(”Test.txt”);
trace(f.nativePath + ‘ is where my file is stored’);
