I agree with this one. Right now when I want to take a group of common files that are named differently and combine them into one file, I have to do a batch file to accomplish this.
Example:
type *.dat >> newfile.txt
del *.dat
I guess I could do this with the read and write functions in VC, but it would be easier in the copy command to append these files together to a new name during the copy and then delete the original files after the copy.
-Mark