public static String path = "file:///SDCard/BlackBerry/music/Pawan.amr";
public static void deleteFile()
{
try
{
FileConnection fconn = (FileConnection)
Connector.open(path,Connector.READ_WRITE);
if (fconn.exists())
{
fconn.delete();
fconn.close();
}
}
catch(Exception e)
{
System.out.println(e.getMessage());
}
}
No comments:
Post a Comment