//---------------------------------------------------------------------------
#include "sfc.h"
// 本工程中需要導入sfc.lib
//---------------------------------------------------------------------------
// 列出所有被保護的文件
void __fastcall ListAllProtectedFile(TStrings *pList)
{
PROTECTED_FILE_DATA data;
data.FileNumber = 0;
while(SfcGetNextProtectedFile(NULL, &data))
{
if(data.FileNumber != 0)
{
pList->Add(data.FileName);
}
}
}
//---------------------------------------------------------------------------
// 判斷一個文件是否被保護
bool __fastcall IsFileProtected(String strFile)
{
WCHAR wszFileName[MAX_PATH];
MultiByteToWideChar(CP_ACP, 0, strFile.c_str(), -1, wszFileName, MAX_PATH);
return SfcIsFileProtected(NULL, wszFileName);
}
// 調用舉例
void __fastcall TForm1::Button1Click(TObject *Sender)
{
// ListAllProtectedFile(Memo1->Lines);
if(IsFileProtected("E:\\Winnt\\system32\\subst1.exe"))
ShowMessage("被保護了");
else
ShowMessage("沒有被保護");
}
//---------------------------------------------------------------------------