org.apache.hadoop.fs.FileUtil.readLink()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(140)

本文整理了Java中org.apache.hadoop.fs.FileUtil.readLink()方法的一些代码示例,展示了FileUtil.readLink()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FileUtil.readLink()方法的具体详情如下:
包路径:org.apache.hadoop.fs.FileUtil
类名称:FileUtil
方法名:readLink

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()));

相关文章