eMule[bcplugin] 共享文件夾列表能加入不能自己定義過濾器啊

eMule[bcplugin] 共享文件夾列表能加入不能自己定義過濾器啊
系統文件夾默認過濾掉了系統屬性的文件,有點受不了。
有哪個大大能教我自己改.exe不?
感激不盡。。。
以下是找了V1.19 src 里找來的相關部分:


bool CSharedDirsTreeCtrl::FileSystemTreeHasSubdirectories(CString strDir)
{

CFileFind finder;
BOOL bWorking = finder.FindFile(strDir+_T("."));
while (bWorking)
{
bWorking = finder.FindNextFile();
if (finder.IsDots())
continue;
if (finder.IsSystem())
continue;
if (!finder.IsDirectory())
continue;
finder.Close();
return true;
}
finder.Close();
return false;
}

}
void CSharedFilesCtrl::AddShareableFiles(CString strFromDir)
{

while (!end)
{
end = !ff.FindNextFile();
if (ff.IsDirectory() || ff.IsDots() || ff.IsSystem() || ff.IsTemporary() || ff.GetLength()==0 || ff.GetLength()>MAX_EMULE_FILE_SIZE)
continue;

CFileFind::IsSystem
BOOL IsSystem( )const;
dwFileAttributes
//FILE_ATTRIBUTE_SYSTEM = 4;

原版電驢不支持的功能,BC插件也不支持