Skip to main content
Pouradam
Inspiring
May 14, 2014
Answered

Adobe Air for Desktop - Temp folder (windows 7)?

  • May 14, 2014
  • 2 replies
  • 1132 views

Hi there!

Just a simple question, where can I find and delete the cached internet files (Temp) related to Adobe Air Desktop on windows 7?

My Air Desktop application downloads a text file from Internet afer each run.

Now when I change the text file online, it still loads the old cached text file, and does not re-download the new text file.

Thanks a lot,

Best of all for you all

This topic has been closed for replies.
Correct answer User Unknow

Try to use this:

var urlr : URLRequest = new URLRequest();

urlr.cacheResponse = false;

If it will not help - use another method. Add to each url something like "?nocache="+ Math.random();

2 replies

Pouradam
PouradamAuthor
Inspiring
May 20, 2014

Thanks a lot! Just one more thing do you know where can i locate the cached files related to Adobe Air applications in windows seven?!

thx

User Unknow
Legend
May 20, 2014

You are welcome!

You can't locate that files because they owned by Internet Explorere application.

User Unknow
User UnknowCorrect answer
Legend
May 19, 2014

Try to use this:

var urlr : URLRequest = new URLRequest();

urlr.cacheResponse = false;

If it will not help - use another method. Add to each url something like "?nocache="+ Math.random();