Java Path Remove nio reportRemoveSymink(Path softLinkLocation)

Here you can find the source of reportRemoveSymink(Path softLinkLocation)

Description

report Remove Symink

License

Open Source License

Declaration

public static void reportRemoveSymink(Path softLinkLocation) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.nio.file.Path;

public class Main {
    public static void reportRemoveSymink(String softLinkLocation) {
        fileCreationReporter("Removing link " + softLinkLocation);
    }/*from   w  w w . j a va  2  s . co m*/

    public static void reportRemoveSymink(Path softLinkLocation) {
        reportRemoveSymink(softLinkLocation.toString());
    }

    public static void fileCreationReporter(String string) {
        System.out.println(string);
    }
}

Related

  1. removeFile(String workspacePath)
  2. removeLine(String path, String line, boolean commentAware)
  3. removeRecursive(Path path)
  4. removeRecursive(Path path)
  5. removeSymlink(Path softLinkLocation)
  6. rm(final LinkedHashMap unremoved, Path... locations)