本文整理了Java中org.apache.hadoop.fs.FileUtil.readLink()
方法的一些代码示例,展示了FileUtil.readLink()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FileUtil.readLink()
方法的具体详情如下:
包路径:org.apache.hadoop.fs.FileUtil
类名称:FileUtil
方法名:readLink
[英]Returns the target of the given symlink. Returns the empty string if the given path does not refer to a symlink or there is an error accessing the symlink.
[中]返回给定符号链接的目标。如果给定路径未引用符号链接或访问符号链接时出错,则返回空字符串。
代码示例来源:origin: org.apache.hadoop/hadoop-common
private FileStatus deprecatedGetFileLinkStatusInternal(final Path f)
throws IOException {
String target = FileUtil.readLink(new File(f.toString()));
代码示例来源:origin: io.hops/hadoop-common
private FileStatus deprecatedGetFileLinkStatusInternal(final Path f)
throws IOException {
String target = FileUtil.readLink(new File(f.toString()));
代码示例来源:origin: com.github.jiayuhan-it/hadoop-common
private FileStatus deprecatedGetFileLinkStatusInternal(final Path f)
throws IOException {
String target = FileUtil.readLink(new File(f.toString()));
代码示例来源:origin: ch.cern.hadoop/hadoop-common
private FileStatus deprecatedGetFileLinkStatusInternal(final Path f)
throws IOException {
String target = FileUtil.readLink(new File(f.toString()));
代码示例来源:origin: io.prestosql.hadoop/hadoop-apache
private FileStatus deprecatedGetFileLinkStatusInternal(final Path f)
throws IOException {
String target = FileUtil.readLink(new File(f.toString()));
内容来源于网络,如有侵权,请联系作者删除!