中文字幕天天躁日日躁狠狠躁,最近中文字幕大全免费版在线,最近2019免费中文字幕视频三,亚洲精品无码你懂的,亚洲国产精品成人精品小说

  • 相關(guān)軟件
    >刪除文件夾下的所有文件 創(chuàng)建者:webmaster 更新時間:2006-04-11 13:32

       public void delete(String path)
        {
            java.io.File[] entries = new java.io.File(path).listFiles();
            if (entries != null)
            {
                for (int index = 0; index < entries.length; index++)
                {
                    entries[index].delete();
                    System.out.println(entries[index].getAbsolutePath());
                }
            }
        }

    Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=613398
    相關(guān)文章
    本頁查看次數(shù):