Package

Source Code of SetTime

import jcifs.smb.SmbFile;
import jcifs.smb.SmbException;

public class SetTime {

    public static void main( String argv[] ) throws Exception {
        SmbFile f = new SmbFile( argv[0] );
        long time = f.getLastModified();
        f.setLastModified( time + 65000 ); /* add 1 minute and 5 seconds */
    }
}

TOP

Related Classes of SetTime

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.