We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c957211 commit f0c66deCopy full SHA for f0c66de
export.py
@@ -50,8 +50,8 @@ def get_config_options(bv: BinaryView):
50
def export_functions(bv: BinaryView):
51
log = bv.create_logger("TypeLib_Exporter")
52
config = get_config_options(bv)
53
- if not os.path.exists(config['export_path']):
54
- log.log_error("Please specify a path to export the type library")
+ if not os.path.exists(os.path.dirname(config['export_path'])):
+ log.log_error(f"Please specify a path to export the type library: {config['export_path']}")
55
return
56
57
func_list = bv.get_symbols_of_type(SymbolType.FunctionSymbol)
0 commit comments