| File object in java
|
manjumurthy

msg:607301 | 11:52 am on Jul 30, 2001 (gmt 0) | How do i move a file from one location to another using the File object in java thanx manjumurthy
|
MaliciousDan

msg:607302 | 2:39 pm on Jul 30, 2001 (gmt 0) | My guess is this isn't the best forum to ask technical questions about Java in, but you got lucky this time. File f = new File("C:/download/test.htm"); f.renameTo(new File("C:/download/test-rename.htm"));
|
|
|