This function creates a new echoview fileset via COM scripting

EVCreateFileset(EVFile, filesetName)

Arguments

EVFile

An Echoview file COM object

filesetName

Echoview fileset name to create

Value

a list object with two elements. $fileset: created fileset COM object, and $msg: message for processing log.

References

http://support.echoview.com/WebHelp/Echoview.htm/

See also

Examples

# NOT RUN {
EVAppObj <- COMCreate('EchoviewCom.EvApplication')
EVFile <- EVOpenFile(EVAppObj,'~~/KAOS/KAOStemplate.EV')$EVFile
EVCreateFileset(EVFile = EVFile, filesetName = 'example')
# }