1234567891011121314151617181920212223242526 |
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package qucikprogs;
- import de.nplusc.izc.tools.IOtools.FileTK;
- import de.nplusc.izc.tools.baseTools.Tools;
- import javax.swing.JTextArea;
- /**
- *
- * @author LH
- */
- public class unAAX
- {
- public static void main(String[] args)
- {
- String[] lst = FileTK.getDirectoryContent("C:\\Users\\LH\\Desktop\\ \\#SG\\Sound\\to\\Synth", true);
- for (String f : lst)
- {
- Tools.runSingleCmd(true, true, true, true, new JTextArea(),System.out, "C:\\Users\\LH\\Desktop\\ \\#SG\\Sound\\to\\Synth",
- true, "C:\\Users\\LH\\Desktop\\ \\#SG\\Sound\\to\\test.exe","-o",f+".wav",f);
- }
- }
- }
|