Package org.jruby.util

Examples of org.jruby.util.JRubyFile.lastModified()


       
        if (!file.exists()) {
            throw runtime.newErrnoENOENTError("No such file or directory - " + path);
        }
       
        return runtime.newTime(file.lastModified());
    }
}
View Full Code Here


       
        if (!file.exists()) {
            throw runtime.newErrnoENOENTError(path);
        }
       
        return runtime.newTime(file.lastModified());
    }

    private void checkClosed(ThreadContext context) {
        openFile.checkClosed(context.getRuntime());
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.