Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*
 * This is the source code of DMPLayer for Android v. 1.0.0.
 * You should have received a copy of the license in this archive (see LICENSE).
 * Copyright @Dibakar_Mistry, 2015.
 */

import java.io.File;

public class Main {
    public static boolean deleteFile(final String path) {
        File photo = new File(path);

        return photo.delete();
    }
}