From 533b8e546a00537d6945f5329decab4b74a5bf09 Mon Sep 17 00:00:00 2001 From: Alexander Khosrowshahi Date: Thu, 3 Jul 2025 13:53:40 -0400 Subject: Add get_files_by_path_in_project and get_path_in_project to C++ and python APIs --- binaryninjaapi.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 0c86e026..2d21ef6d 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -2938,7 +2938,8 @@ namespace BinaryNinja { Ref CreateFileUnsafe(const std::vector& contents, Ref folder, const std::string& name, const std::string& description, const std::string& id, int64_t creationTimestamp, const ProgressFunction& progressCallback = {}); std::vector> GetFiles() const; Ref GetFileById(const std::string& id) const; - Ref GetFileByPathOnDisk(const std::string& path); + Ref GetFileByPathOnDisk(const std::string& path) const; + std::vector> GetFilesByPathInProject(const std::string& path) const; void PushFile(Ref file); bool DeleteFile_(Ref file); -- cgit v1.3.1