Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在量角器中运行了几个自动化脚本,并且在一种情况下,应用程序每次上传都需要唯一的 xml 文件名,所以通过自动化我如何实现这一点,我必须通过更改文件名多次上传相同的文件文件的外部和内部。它只允许xml文件。
请提出一些解决方案。
提前致谢。
您应该能够通过 nodeJS 的fs模块并根据当前时间附加一个唯一的时间戳来实现这一点。我还没有测试过,但这可能有效
fs
const fs = require('fs'); const newName = `file_${Date.now()}.xml` fs.renameSync('file.xml', newName); //Then upload your file however you need to
这将filename.xml在指定位置创建一个副本并重命名它filename_1570786998048.xml。
filename.xml
filename_1570786998048.xml