本文整理了Java中hudson.FilePath.readLink()
方法的一些代码示例,展示了FilePath.readLink()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FilePath.readLink()
方法的具体详情如下:
包路径:hudson.FilePath
类名称: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();
内容来源于网络,如有侵权,请联系作者删除!