<div class="gmail_quote">On Wed, Dec 16, 2009 at 11:33 AM, Dave Angel <span dir="ltr"><<a href="mailto:davea@ieee.org">davea@ieee.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
<br>
Victor Subervi wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="im">
On Tue, Dec 15, 2009 at 6:57 PM, r0g <<a href="http://aioe.org" target="_blank">aioe.org</a>@<a href="http://technicalbloke.com" target="_blank">technicalbloke.com</a>> wrote:<br>
<br></div>
<snip><div class="im"><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Cookies in FF for Windows are stored in an sqlite database in here...<br>
<br>
~\Application Data\Mozilla\Firefox\Profiles\%XYZ%\firefox_profile\<br>
<br>
    <br>
</blockquote>
<br>
Man, I searched C drive (the only drive) on this computer where I'm working<br>
(Internet cafe) for "Application Data" and nuttin.<br>
V<br>
<br>
  <br>
</div></blockquote>
How are you searching?  Microsoft is so sure we don't want to see the gory details that they hide all sorts of things, by default.  And especially on a public computer, you shouldn't even look with Explorer.  As for searching with Explorer, there are not only design problems, but bugs as well.  Get a command line, and do something like:<br>

<br>
    dir  /s  c:\Firefox<br>
<br>
if you search directly for Application Data, you have to be sure to properly use quotes.  You also need to add the /ah switch, since it's a hidden directory.  So I cheat by searching for a subdirectory under it.<br>
<br>
You can also find the appdata directory by looking at the environment variable USERPROFILE, switching to that directory, and descending directly into "application data" by using the tab key.<br>
<br>
C:\>set USERPROFILE<br>
USERPROFILE=C:\Documents and Settings\davea<br>
<br>
C:\>cd "Documents and Settings\davea"<br>
<br>
C:\Documents and Settings\davea>cd "Application Data"<br>
<br>
I got the last line by typing    cd app   then pressing the tab key (this adds the quotes and spaces for me)<br>
<br>
Anyway, once you're in the Firefox directory, do:<br>
<br>
C:\Documents and Settings\davea\Application Data\Mozilla\Firefox>dir /s cook*<br>
<br>
and you'll see the actual file.<br>
<br>
You can also search for it from the root, but I have 13 files cookies.*   and 8  cookies.sqlite<br>
<br>
Incidentally, lots of interesting stuff is in the USERPROFILE directory, so it's a good thing to know how to quickly find.  Different versions of Windows put it different places, but it ends with the logged-in user name.  So user-specific data is typically stored there.  Some versions of Python even include a directory under it in the sys.path directory list.<br>
</blockquote><div><br>That was great! Thanks, Dave!<br>V<br></div></div>