Java Delete Temp Directory deleteTestData()

Here you can find the source of deleteTestData()

Description

delete Test Data

License

Apache License

Declaration

public static void deleteTestData() 

Method Source Code


//package com.java2s;
/*//w  ww  . j ava 2s . co  m
*
* Copyright 2015 Electric Cloud, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import java.io.File;

public class Main {
    private static String testFileLocation;

    public static void deleteTestData() {

        File fileToDelete = new File(testFileLocation);
        fileToDelete.delete();
    }
}

Related

  1. deleteTempDir(File file)
  2. deleteTempDirectories(List lstTempDirectories)
  3. deleteTempDirectory(File dir)
  4. deleteTempMapset(String mapsetFolder)
  5. deleteTemporaryDirectory(String dir)
  6. deleteTestDir(final File file)
  7. deleteTestDirectory(File testDir)
  8. deleteTestFile(String fileName)
  9. deleteTestFiles()