aliyun-oss-plugin
aliyun-oss-plugin copied to clipboard
您好

for (FilePath src : paths) {
String key = "";
if (Utils.isNullOrEmpty(expVP)
&& Utils.isNullOrEmpty(embeddedVP)) {
key = src.getName();
} else {
String prefix = expVP;
if (!Utils.isNullOrEmpty(embeddedVP)) {
if (Utils.isNullOrEmpty(expVP)) {
prefix = embeddedVP;
} else {
prefix = expVP + embeddedVP;
}
}
key = prefix + src.getName();
}
这里只是读取了文件名作为OSS object的key,并没有将路径信息包含进去。不是你的设置问题。
@BillllX 为了有效沟通,以后提issue时请在标题上简短描述问题
Understand, we haven't implemented that yet.