Delete File From Folder

anybody know how we can delete the file from a folder?plz help!!!thanks in advance..
[105 byte] By [rakhi@odma] at [2007-11-27 4:40:58]
# 1
ctrl + shift + del
AnanSmritia at 2007-7-12 9:52:16 > top of Java-index,Desktop,Core GUI APIs...
# 2
File file = new File("d:\\file.txt"); //path to File if(file.exists()) { file.delete(); }
Ksushaa at 2007-7-12 9:52:16 > top of Java-index,Desktop,Core GUI APIs...
# 3
thank u very much Ksusha.your code is really working!!!
rakhi@odma at 2007-7-12 9:52:16 > top of Java-index,Desktop,Core GUI APIs...