Copyright © 2006-2019 MultiMedia Soft

RecordedSound.AddToZip method

Previous pageReturn to chapter overviewNext page

Remarks

 

Adds the recorded sound to a ZIP file session previously opened through the ZIP.Open method or created through the ZIP.Create method.

 

This method only updates the ZIP session: to update or rewrite the ZIP file the ZIP.Save method would need to be called.

 

For further details about recorded sound methods refer to the RecordedSound object section.

For further details see the How to export a recorded sound section.

For further details about methods for ZIP management refer to the ZIP object.

For details about using ZIP management refer to the How to manage ZIP files tutorial.

 

 

Syntax

 

[Visual Basic]

control.RecordedSound.AddToZip (

strEntryName as String,

bAddExtraPath as enumBoolean

) as enumErrorCodes


 

[C++]

short control.RecordedSound.AddToZip (

LPCTSTR strEntryName,

short bAddExtraPath

);


 

 

Parameter

Description

 

 

strEntryName

String representing the name of the entry to add.

If sound data resulting from a recording session has been stored on a file, you may use the full pathname of the destination file.

In case the ZIP session should already contain an entry with the same name, this would be removed and replaced by the new one: you may use the ZIP.EntryUncompressedSizeGet method in order to understand if an entry with a specific name already exists.

bAddExtraPath

This parameter is ignored if sound data resulting from a recording session has been stored on a memory buffer

If sound data resulting from a recording session has been stored on a file, this value represents a boolean flag determining if the relative path of the recorded sound file should be added to the destination path inside the ZIP file session.

Supported values are the following:

Mnemonic constant

Value

Meaning

BOOL_FALSE

0

The relative path of the recorded sound file is not added.

If for example the strEntryName parameter should be "c:\first_dir\second_dir\myFile.mp3" the final name of the entry would be "myFile.mp3"

BOOL_TRUE

1

The relative path of the recorded sound file is added.

If for example the strEntryName parameter should be "c:\first_dir\second_dir\myFile.mp3" the final name of the entry would be "first_dir/second_dir/myFile.mp3"

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred, check the LastError property value in order to see the error code meaning

enumErrorCodes.ERR_NOERROR (0)

The method call was successful.