首页 > 开发 > 综合 > 正文

用 C# 获取 IE 临时文件

2024-07-21 02:19:47
字体:
来源:转载
供稿:网友
中国最大的web开发资源网站及技术社区,
大家知道,在我们访问一个网站的时候。系统会把这个网站上的图片,动画等内容全部缓存到internet临时文件夹中。
我们可以通过 <drives>:/documents and settings/<user>/local settings/temporary internet files访问。但是可能我们都没有想到,里面的文件实际却不同于我们系统中其他的文件夹和文件的关系。

举例说明,我们在vs.net下写一个函数来返回指定文件夹中的文件夹和所有文件时,但我们把internet临时文件夹的地址传进去时,系统只会返回一个文件,那就是desktop.ini(每个文件夹都有),还有一个隐藏的文件夹。所以这就证明了在临时文件夹中的文件并不是按照普通的文件夹与文件的方式存在的。

其实windows是把临时文件全部存在一个隐藏的文件夹中,这个文件夹是我们都看不到的,然后靠一个index.dat的索引把内容全部读出来回显给用户。

那我们怎么用程序来读取其中的内容呢? 因为这几天在帮同学完成他的毕业设计,所以研究了一下。
首先要引用一个user.dll,在系统文件夹中。然后利用它其中的一些函数就可以遍历整个文件夹,并获得其中每个文件的信息。

[dllimport("wininet.dll", setlasterror=true, charset=charset.auto)]
public static extern intptr findfirsturlcacheentry(
[marshalas(unmanagedtype.lptstr)] string lpszurlsearchpattern,
intptr lpfirstcacheentryinfo,
ref int lpdwfirstcacheentryinfobuffersize);

[dllimport("wininet.dll", setlasterror=true, charset=charset.auto)]
public static extern bool findnexturlcacheentry(
intptr henumhandle,
intptr lpnextcacheentryinfo,
ref int lpdwnextcacheentryinfobuffersize);

[dllimport("wininet.dll")]
public static extern bool findcloseurlcache(
intptr henumhandle);


引入以上三个函数来遍历临时文件夹,然后再引用

[dllimport("kernel32.dll",setlasterror=true, charset=charset.auto)]
public static extern int filetimetosystemtime(
intptr lpfiletime,
intptr lpsystemtime);

用来把 filetime时间格式转化成c#中的string类型,以便我们进一步操作。

主体程序如下:

#region 引入dll

[structlayout(layoutkind.sequential, charset=charset.auto)]
public struct internet_cache_entry_info
{
public int dwstructsize;
public intptr lpszsourceurlname;
public intptr lpszlocalfilename;
public int cacheentrytype;
public int dwusecount;
public int dwhitrate;
public int dwsizelow;
public int dwsizehigh;
public filetime lastmodifiedtime;
public filetime expiretime;
public filetime lastaccesstime;
public filetime lastsynctime;
public intptr lpheaderinfo;
public int dwheaderinfosize;
public intptr lpszfileextension;
public int dwexemptdelta;
}

[structlayout(layoutkind.sequential, charset=charset.auto)]
public struct systemtime
{
public short wyear;
public short wmonth;
public short wdayofweek;
public short wday;
public short whour;
public short wminute;
public short wsecond;
public short wmilliseconds;
}

[dllimport("kernel32.dll",setlasterror=true, charset=charset.auto)]
public static extern int filetimetosystemtime(
intptr lpfiletime,
intptr lpsystemtime);

[dllimport("wininet.dll", setlasterror=true, charset=charset.auto)]
public static extern intptr findfirsturlcacheentry(
[marshalas(unmanagedtype.lptstr)] string lpszurlsearchpattern,
intptr lpfirstcacheentryinfo,
ref int lpdwfirstcacheentryinfobuffersize);

[dllimport("wininet.dll", setlasterror=true, charset=charset.auto)]
public static extern bool findnexturlcacheentry(
intptr henumhandle,
intptr lpnextcacheentryinfo,
ref int lpdwnextcacheentryinfobuffersize);

[dllimport("wininet.dll")]
public static extern bool findcloseurlcache(
intptr henumhandle);

const int error_no_more_items = 259;

#endregion

#region filetimetosystemtime

private string filetimetodatatime(filetime time)
{
intptr filetime = marshal.allochglobal( marshal.sizeof(typeof(filetime)) );
intptr systime = marshal.allochglobal( marshal.sizeof(typeof(systemtime)) );
marshal.structuretoptr(time,filetime,true);
filetimetosystemtime( filetime ,systime);
systemtime st = (systemtime) marshal.ptrtostructure(systime,typeof(systemtime));
string time = st.wyear.tostring()+"."+st.wmonth.tostring()+"."+st.wday.tostring()+"."+st.whour.tostring()+"."+st.wminute.tostring()+"."+st.wsecond.tostring();
return time;
}

#endregion

#region 加载数据
private void fileok_click(object sender, system.eventargs e)
{

int nneeded = 0, nbufsize;
intptr buf;
internet_cache_entry_info cacheitem;
intptr henum;
bool r;

findfirsturlcacheentry( null, intptr.zero, ref nneeded );

if ( marshal.getlastwin32error() == error_no_more_items )
return;

nbufsize = nneeded;
buf = marshal.allochglobal( nbufsize );
henum = findfirsturlcacheentry( null, buf, ref nneeded );
while ( true )
{
cacheitem = (internet_cache_entry_info) marshal.ptrtostructure( buf,
typeof(internet_cache_entry_info) );

string modifiedtime = filetimetodatatime(cacheitem.lastmodifiedtime);
string expiretime = filetimetodatatime(cacheitem.expiretime);
string accesstime = filetimetodatatime(cacheitem.lastaccesstime);
string synctime = filetimetodatatime(cacheitem.lastsynctime);

#region 获得数据,存入数据库
try
{

//此處遍歷cacheitem即可
//例如
string s = marshal.ptrtostringauto(cacheitem.lpszsourceurlname);
}
catch
{
//異常處理
}
#endregion

string s = marshal.ptrtostringauto(cacheitem.lpszsourceurlname);

nneeded = nbufsize;
r = findnexturlcacheentry( henum, buf, ref nneeded );

if ( !r && marshal.getlastwin32error() == error_no_more_items )
break;

if ( !r && nneeded > nbufsize )
{
nbufsize = nneeded;
buf = marshal.reallochglobal( buf, (intptr) nbufsize );
findnexturlcacheentry( henum, buf, ref nneeded );
}
}

messagebox.show("系统数据加载完毕!");
marshal.freehglobal( buf );

}

#endregion



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表