libpldmresponder: BIOS: create dir to store tables

The directory where BIOS tables are persisted must be created by the
code.

Signed-off-by: Deepak Kodihalli <dkodihal@in.ibm.com>
Change-Id: I2acdce9e032707145f0ee4c1d2ab803954f46b1c
diff --git a/libpldmresponder/bios.cpp b/libpldmresponder/bios.cpp
index a899e62..392f58a 100644
--- a/libpldmresponder/bios.cpp
+++ b/libpldmresponder/bios.cpp
@@ -732,6 +732,7 @@
 
 Response getBIOSTable(const pldm_msg* request, size_t payloadLength)
 {
+    fs::create_directory(BIOS_TABLES_DIR);
     auto response = internal::buildBIOSTables(request, payloadLength,
                                               BIOS_JSONS_DIR, BIOS_TABLES_DIR);