Is there a methos to get the extension of a file??
Amit Roy
Ranch Hand
Joined: Oct 10, 2000
Posts: 132
posted
0
hello frns Is there a method to get the file extension of a file from a file object Amit
<I>Chance Favours the Prepared minds"</I>
Mahajan Bhupendra
Ranch Hand
Joined: Dec 01, 2000
Posts: 118
posted
0
Hi Amit i have written this code for u.. try it
import java.io.*; class f1 { public static void main(String args[]) { File file1=new File("c:\\abcd\\ddd\\c.exe"); String name=file1.getName(); String ext=name.substring(name.lastIndexOf('.')+1); System.out.println(ext); } } Bhupendra
<B>Bhupendra Mahajan</B>
Amit Roy
Ranch Hand
Joined: Oct 10, 2000
Posts: 132
posted
0
Thanks Bhupendra I was gonna do the same thing and i got a ready made code Actually i wanted to knoe wether there is any method to get the file extension i didnt find it in the API but i thinn i read it somewhere Amit