This function finds an Echoview fileset in an Echoview file via COM scripting

EVFindFilesetByName(EVFile, filesetName)

Arguments

EVFile

An Echoview file COM object

filesetName

Echoview fileset name to find

Value

a list object with two elements. $fileset: found 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
EVFileset <-EVFindFilesetByName(EVFile = EVFile, filesetName = '038-120-200')$filesetObj
# }