在* .html文件的CBFS驱动程序中未调用Delete API

时间:2018-07-19 13:05:48

标签: c++ windows windows-explorer windows-explorer-integration

我正在使用In[116]: df.columns[df.abs().gt(0.05).values[0]].tolist() Out[116]: ['Consumer Staples', 'Financials', 'Health Care'] 创建一个额外的驱动器。

创建了CBFS DriversCLASS

在其构造函数中,我将所有功能分配给各种操作。 例如

class CVExpPluginCallbackFileSystem : public CallbackFileSystem

当我从该驱动器中删除任何文件(.html除外)时,将调用CVExpPluginCallbackFileSystem(MyCBFSHelperBase* pExpPluginCBFSHelper) { SetOnReadFile(s_CbFsReadFile); SetOnWriteFile(s_CbFsWriteFile); SetOnDeleteFile(s_CbFsDeleteFile); } 并成功删除文件。但是,当我删除.html文件时,s_CbFsDeleteFile()没有得到调用。我该怎么做才能解决这个问题?

0 个答案:

没有答案