Metoda ADO SaveToFile


❮ Dokončete referenci objektu streamu

Metoda SaveToFile se používá k uložení binárního obsahu otevřeného objektu Stream do místního souboru.

Poznámka: Po volání této metody se aktuální pozice ve streamu nastaví na začátek proudu (Position=0).

Syntax

objStream.SaveToFile filename,option

Parameter Description
filename Required. The name of the file to save the contents of the Stream object
option Optional. A SaveOptionsEnum value that specifies whether a file should be created if it does not exist or overwritten. Default is adSaveCreateNotExist.

SaveOptionsEnum hodnoty

Constant Value Description
adSaveCreateNotExist 1 Default. Creates a new file if the file does not already exist
adSaveCreateOverWrite 2 Overwrites the file with the data from the currently open Stream object, if the file already exists

❮ Dokončete referenci objektu streamu