이 내용은 고객님의 설정 언어로 확인할 수 없습니다

이 내용은 다른 사용 가능한 언어로 표시됩니다. 고객님께서 사용하시는 브라우저에 텍스트 번역에 도움이되는 기능이 포함되어 있을 수 있습니다.

Concatenating Multiple TDMS Files in a Single File using NI Software

Updated Aug 21, 2023

Reported In

Software

  • DIAdem
  • LabVIEW

Issue Details

I have multiple TDMS files generated on my application that share the same channels and groups names and I want to concatenated each channel with your respective peers of the other files and create a single TDMS file with those. 
How can I do that?

Solution

There are some possible solutions for that issue depending on your needs. 

Using LabVIEW:

Using DIAdem

Additional Information

You can also merge DIAdem files by using the following syntax in a DOS shell:
copy /b "Path to the first TDMS file" + "Path to second TDMS file" + ... + "Path to n TDMS file" /b "Path to the resulting TDMS file"
for example:
copy /b "C:\Test merging tdms\File 0.tdms" + "C:\temp\Test merging tdms\File 1.tdms" + "C:\temp\Test merging tdms\File 2.tdms" /b "C:\temp\Test merging tdms\Resulting file.tdms"