1.

Solve : Output File?

Answer»

Can you change the way the file is outputted.

I need the dos output to be comma seperated

dir *.pst  /s >pst.txtyou could write a batch script to parse the output of DIR
Quote from: electra109 on September 20, 2010, 03:20:29 PM

Can you change the way the file is outputted.

I need the dos output to be comma seperated

dir *.pst  /s >pst.txt

download sed for WINDOWS
Code: [SELECT]C:\TEST>dir *.pst /B /S |sed ":a N;s/\n/,/;ba"


Discussion

No Comment Found