#include "Aspose.Cells.h" // The path to the documents directory. StringPtr dataDir = new String(""); // Set LoadOptions intrusive_ptr loadOptions = Factory::CreateILoadOptions(LoadFormat::LoadFormat_SXC); // Create a Workbook object and opening the file from its path intrusive_ptr workbook = Factory::CreateIWorkbook( dataDir->StringAppend(new String("Input.sxc")), loadOptions); // Show following message on console Console::WriteLine(new String("SXC file opened successfully!")); // Save for check workbook->Save(new String("Output.xlsx"));