hudson.FilePath.readLink()方法的使用及代码示例

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

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

FilePath.readLink介绍

[英]Resolves symlink, if the given file is a symlink. Otherwise return null.

If the resolution fails, report an error.
[中]如果给定文件是符号链接,则解析符号链接。否则返回null。
如果解析失败,请报告错误。

代码示例

代码示例来源:origin: jenkinsci/jenkins

@Override public String readLink() throws IOException {
  try {
    return f.readLink();
  } catch (InterruptedException x) {
    throw new IOException(x);
  }
}
@Override public VirtualFile[] list() throws IOException {

代码示例来源:origin: jenkinsci/copyartifact-plugin

@Override
public void copyOne(FilePath s, FilePath d, boolean fingerprintArtifacts) throws IOException, InterruptedException {
  String link = s.readLink();
  if (link != null) {
    d.getParent().mkdirs();

相关文章