unAAX.java 811 B

1234567891011121314151617181920212223242526
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package qucikprogs;
  6. import de.nplusc.izc.tools.IOtools.FileTK;
  7. import de.nplusc.izc.tools.baseTools.Tools;
  8. import javax.swing.JTextArea;
  9. /**
  10. *
  11. * @author LH
  12. */
  13. public class unAAX
  14. {
  15. public static void main(String[] args)
  16. {
  17. String[] lst = FileTK.getDirectoryContent("C:\\Users\\LH\\Desktop\\         \\#SG\\Sound\\to\\Synth", true);
  18. for (String f : lst)
  19. {
  20. Tools.runSingleCmd(true, true, true, true, new JTextArea(),System.out, "C:\\Users\\LH\\Desktop\\         \\#SG\\Sound\\to\\Synth",
  21. true, "C:\\Users\\LH\\Desktop\\         \\#SG\\Sound\\to\\test.exe","-o",f+".wav",f);
  22. }
  23. }
  24. }