Java --刪除指定路徑文件

    /**
     * 刪除指定名稱圖片
     * 
     * @param path
     *             文件指定路徑
     * @return 
     */
    public void deleteFile(String path) {
        
        //建立文件
        File file = new File(path);        
        if (file.exists() && file.isFile()) {
            //刪除文件
            file.delete();
        }
    }
相關文章
相關標籤/搜索