我正在从C:\ Users \ User \ AppData \ Local \ Mozilla \ Firefox \ Profiles \ orlxb2co.default-release \ cache2 \ entries的Firefox缓存中提取所有有用的信息。
如何使用python访问上面目录中的每个文件并在文件中搜索URL链接?
这是我到目前为止所拥有的:
firefox_profile_path = os.path.join(paths.homePath(), 'AppData', 'Local', 'Mozilla', 'Firefox', 'Profiles','cache2')
for cache_name in glob.glob(firefox_profile_path):
with open(cache_name, 'rb') as file_cache:
data = file_cache.read()
firefox_db |= set(re.findall("(http.*?)\x00", data))
print(firefox_db)