Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can i delete a directory (folder) that contains files or/and other folders in j2me? I know how to use fileconnection but it can not delete a folder that contains other folders or files.

share|improve this question

2 Answers

well, if your device doesn't allow deletion of non-empty folders, presumably, delete every file in the folder first, then delete the empty folder...

share|improve this answer

Here is the some code..

String url="file:///localhost/somedir";  //in some devices localhost will be root or user
FileConnection localdir=(FileConnection)Connector.open(url,Connector.READ_WRITE);
if(localdir.exists())
{
   Enumeration list=localdir.list();  //gives u total files list (files +dir)
   while(list.hasMoreElements())
   {
       String fileName=(String)list.nextElement();
       FileConnection localfile=(FileConnection)Connector.open(url+"/"+fileName,Connector.READ_WRITE);
          if(localfile.exists())
             localfile.delete();
    }
    //atlast delete the directory too
     localdir.delete();
} 

delete all the files and directories and then delete the original directory.

hope this will help..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.