Exporting Data from the Profiler

OverviewDetails

Feature Only in Professional and Enterprise Editions   Profiling is supported only in Visual C++ Professional and Enterprise Editions. For more information, see .

The PLIST /T command-line option causes PLIST to export the contents of a .PBT file into a tab-delimited format suitable for import into a spreadsheet or database. This format can also be used by user-written programs.

For example, to create a tab-delimited file called MYPROG.TXT from MYPROG.PBT, type:

PLIST /T MYPROG > MYPROG.TXT

Or, if you are using tokens in a batch file, you might use:

PLIST /T %1 > MYPROG.TXT

Note   The ASCII tab-delimited format was designed to be read by other programs; it is not intended for general reporting.