in vault-server/src/jetbrains/buildServer/buildTriggers/vcs/vault/VaultUtil.java [94:100]
public static String getFullPath(@NotNull String path, @NotNull String targetPath) {
targetPath = targetPath.replace('\\', '/');
if (targetPath.endsWith("/")) {
targetPath = targetPath.substring(0, targetPath.length() - 1);
}
return (targetPath.length() == 0 ? "" : targetPath + "/") + path;
}