WinBatch Tech Support Home

Database Search

If you can't find the information using the categories below, post a question over in our WinBatch Tech Support Forum.

TechHome

ShellOp

Can't find the information you are looking for here? Then leave a message over on our WinBatch Tech Support Forum.

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)
or
AddExtender("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
File Created: 2001:11:08:12:40:02
Last Updated: 2001:11:08:12:40:02