Shellop Source File List
Keywords: source file list
Question:
Can you specify a list of files in the source parameter, or only wildcards?Answer:
Yes, you can specify either a tab-delimited list or a vertical-bar delimited list, e.g.,AddExtender("wwsop34i.DLL") ;TAB DELIMITED src = strcat("C:\Temp\junk2.wbt",@TAB,"C:\Temp\junk.cmp") targ = "C:\Temp\unzip" flags = 0 afilecopy(src,targ,flags)orAddExtender("wwsop34i.DLL") ;VERTICAL BAR DELIMITED src = "C:\Temp\junk2.wbt|C:\Temp\junk.cmp" targ = "C:\Temp\unzip" flags = 0 afilecopy(src,targ,flags)
Article ID: W14798