Results 1 to 3 of 3

Thread: Deletim tmp files

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Aug 2000
    Location
    Philippines
    Posts
    85

    Question Deletim tmp files

    Hi to all,

    any example on how to delete files in Java?
    Let say tmp files stored in windows\temp directory....

    thanks a lot.

  2. #2
    Not sure about the first part, but for the second you can use the File class with the delete() method:
    Code:
    File f = new File("c:\\windows\\temp\\tempfile.tmp");
    f.delete();

  3. #3
    Oh, and here's the documentation for the File class provided by Sun: http://java.sun.com/j2se/1.3/docs/api/java/io/File.html

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width