- Oct
- 364
- 17
In this code .qa-vld and .csv are both semicolon-delimited plaintext files. The only control characters are CRLF. The qa-vld file is just a semi-delimited csv file with a header row. I have set Windows to open .qa-vld in Excel, although that happens later.
set m_vld="F:\CLIENT DOWNLOADS\TXE\a-Temp\TXE-MAIN.qa-vld"
set j_csv="F:\CLIENT DOWNLOADS\TXE\a-Temp\TXE-JUNK*.csv"
copy /Q /E %m_vld + %j_csv /A "%go_target_path\TXE-Import_%dashdate.qa-vld"
The source files both end in hex 0D 0A. But the target file ends in 0D 0A 1A and I'm trying to find out why. It did the same when I had the /A right after /E (which I found out isn't the correct syntax.)
Using TCC 22.00.40, Win 7 Pro 32-bit
set m_vld="F:\CLIENT DOWNLOADS\TXE\a-Temp\TXE-MAIN.qa-vld"
set j_csv="F:\CLIENT DOWNLOADS\TXE\a-Temp\TXE-JUNK*.csv"
copy /Q /E %m_vld + %j_csv /A "%go_target_path\TXE-Import_%dashdate.qa-vld"
The source files both end in hex 0D 0A. But the target file ends in 0D 0A 1A and I'm trying to find out why. It did the same when I had the /A right after /E (which I found out isn't the correct syntax.)
Using TCC 22.00.40, Win 7 Pro 32-bit