public void removeFiles()
{
     String mPath = "/temp/temp1/";
     File dir = new File(mPath);

     String[] children = dir.list();
     if (children != null) {
         for (int i=0; i<children.length; i++) {
             String filename = children[i];
             File f = new File(mPath + filename);
    
             if (f.exists()) {
                 f.delete();
             }
         }//for
     }//if
    
    }//public void removeFiles()


+ Recent posts