Package net.sf.jmp3renamer.util

Examples of net.sf.jmp3renamer.util.FileChooser


    public void openDir() {
        File dir = null;
        boolean recursive = false;
        try {
            FileChooser chooser = new FileChooser();
            dir = chooser.getSelectedFile();
            recursive = chooser.recursive();
        } catch (Exception e) {
            logger.error(I18N.translate("error.open_dir"), e);
        }

        if(dir != null) {
View Full Code Here

TOP

Related Classes of net.sf.jmp3renamer.util.FileChooser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.