DOCX JPG PDF XML PST
  Product Family
MSG

C ++ ‘da PST’yi MSG’ye dönüştürün

C ++ E-posta kitaplığını kullanarak yüksek performanslı PST’den MSG’ye dönüştürme.

C ++ Kullanarak PST MSG'ye Nasıl Dönüştürülür

PST’yi MSG’ye dönüştürmek için kullanacağız

C++ için Aspose.Email

C++ platformu için zengin özelliklere sahip, güçlü ve kullanımı kolay bir belge işleme ve dönüştürme API’si olan API. En son sürümünü doğrudan indirebilirsiniz, sadece açın

NuGet

paket yöneticisi, Aspose.Email.Cpp’yi arayın ve yükleyin. Paket Yöneticisi Konsolu’ndan aşağıdaki komutu da kullanabilirsiniz.

Command

PM> Install-Package Aspose.Email.Cpp

PST'yi C ++ ile MSG'ye Dönüştürme Adımları

C ++ programcıları, PST dosyasını sadece birkaç kod satırında MSG’ye kolayca dönüştürebilirler.

  • PersonalStorage: :fromFile ile PST dosyasını yükleyin.
  • İki parametreye sahip saveAs () yöntemini çağırın.
  • Parametre olarak MSG dosyasını ve FileFormat: :Msg çıktısını alın.
  • MSG dosyası belirtilen yolda kaydedilecektir.
  • Uyumlu programda MSG dosyasını açın.

Sistem Gereksinimleri

C++ dönüştürme kodunu çalıştırmadan önce aşağıdaki önkoşullara sahip olduğunuzdan emin olun.

  • Microsoft Windows veya Windows 32 bit, Windows 64 bit ve Linux 64 bit için C ++ Çalışma Zamanı Ortamı ile uyumlu bir işletim sistemi.
  • Projenizde referans verilen C ++ DLL için Aspose.Email.
 

PST'den MSG'ye dönüştürücü - C++

// Load the Outlook PST file
System::SharedPtr<PersonalStorage> personalStorage = PersonalStorage::FromFile(dataDir + L"SampleContacts.pst");
// Get the Contacts folder
System::SharedPtr<FolderInfo> folderInfo = personalStorage->get_RootFolder()->GetSubFolder(L"Contacts");
// Loop through all the contacts in this folder
System::SharedPtr<MessageInfoCollection> messageInfoCollection = folderInfo->GetContents();
   
{
    auto messageInfo_enumerator = (messageInfoCollection)->GetEnumerator();
    decltype(messageInfo_enumerator->get_Current()) messageInfo;
    while (messageInfo_enumerator->MoveNext() && (messageInfo = messageInfo_enumerator->get_Current(), true))
    {
        // Get the contact information
        System::SharedPtr<MapiMessage> mapi = personalStorage->ExtractMessage(messageInfo);
       
        System::SharedPtr<MapiContact> contact = System::DynamicCast<Aspose::Email::Outlook::MapiContact>(mapi->ToMapiMessageItem());
       
        // Save to disk in MSG format
        if (contact->get_NameInfo()->get_DisplayName() != nullptr)
        {
            System::SharedPtr<MapiMessage> message = personalStorage->ExtractMessage(messageInfo);
            // Get rid of illegal characters that cannot be used as a file name
            System::String messageName = message->get_Subject().Replace(L":", L" ").Replace(L"\\", L" ").Replace(L"?", L" ").Replace(L"/", L" ");
            message->Save(dataDir + L"Contacts\\" + messageName + L"_out.msg");
        }
    }
} 
 
  • PST’den MSG’ye Dönüştürme Canlı Demolar

    Diğer Desteklenen Dönüşümler

    PST'yi aşağıda listelenen birkaçı da dahil olmak üzere diğer birçok dosya biçimine dönüştürebilirsiniz.

    PST TO EML (Outlook E-posta Mesajları)
    PST TO EMLX (Apple EMLX Biçimi)
    PST TO HTML (Hiper Metin İşaretleme Dili)
    PST TO ICS (iCalendar)
    PST TO MBOX (Elektronik Posta Mesajları)
    PST TO MHTML (Web Sayfası Arşiv Formatı)
    PST TO OFT (Outlook E-posta Şablonları)
    PST TO OST (Çevrimdışı Depolama Dosyaları)
    PST TO VCF (Sanal Kart Formatı)