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.
希望运行一个 Windows 命令行,它将获取文件名并在末尾附加一个 %random% 三位数字。所有人都知道它可能永远不会真正随机..
test_file.mp4 到 test_file_582.mp4
set /a num = %random% % 1000 ren test_file.mp4 test_file_%num%.mp4
请注意,这可能会多次返回相同的伪随机数,因此您可能希望在可能破坏已经存在的内容之前测试新文件的存在。
它也不会被填充到三位数(即你可以得到test_file_1.mp4)。我现在把这个作为练习留给读者。
test_file_1.mp4