我正在努力在 Alfresco 中编写一个脚本来重命名文件扩展名。
该文件另存为filename.bin
. 我正在使用内容规则来说明文件名何时等于*bin
重命名为*pdf
.
我在脚本上有点挣扎,希望能提供任何帮助。
我的脚本如下:
// change the name of this document
document.properties.name = document.properties.name+".pdf";
// add a new property string
document.properties["cm:locale"] = mylocalenode;
// save the property modifications
document.save();
但似乎没有让我到任何地方。