I have a program that calls a Photoshop droplet with a process. I want this droplet to do some work on all the files in a directory, so I want to call the directory with:
'proc is declared as New Process
proc.StartInfo.Arguments = "c:\letspretendthisisthefolder"
Is that fine? Or do I need to do something like "c:\letspretendthisisthefolder\*" to tell it to take everything inside that directory?
'proc is declared as New Process
proc.StartInfo.Arguments = "c:\letspretendthisisthefolder"
Is that fine? Or do I need to do something like "c:\letspretendthisisthefolder\*" to tell it to take everything inside that directory?