IsoArchive.CreateEntry

CreateEntry(string, string)

Adds a file to the ISO image.

public void CreateEntry(string name, string filePath)
ParameterTypeDescription
nameStringPath of the file in the ISO.
sourceStringPath of the file.

See Also


CreateEntry(string, Stream)

Adds a file to the ISO image.

public void CreateEntry(string name, Stream source)
ParameterTypeDescription
nameStringPath of the file in the ISO.
sourceStreamStream containing the file data.

See Also


CreateEntry(string)

Adds a file to the ISO image.

public void CreateEntry(string name)
ParameterTypeDescription
nameStringPath of the directory in the ISO.

See Also