Java File Link isSymLink(File file)

Here you can find the source of isSymLink(File file)

Description

is Sym Link

License

Apache License

Declaration

public static boolean isSymLink(File file) 

Method Source Code


//package com.java2s;
/*/* www  .  j  av  a 2  s.  c  o m*/
 * Copyright 2007 The Codehaus Foundation.
 *
 * 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;
import java.nio.file.Files;

public class Main {
    public static boolean isSymLink(File file) {
        return Files.isSymbolicLink(file.toPath());
    }
}

Related

  1. getLinkOptions(boolean followLinks)
  2. isLink(File f)
  3. isSymbolicLink(File file)
  4. isSymbolicLink(String file)
  5. isSymlink(File file)
  6. isSymlink(final File file)
  7. isSymlinkJava7(@Nonnull File file)
  8. makeSymLink(File target, File destination)
  9. readSymbolicLink(@Nonnull File symlink)