谁能帮我破解这个坚果?
我在 %localappdata% 中有一个文件夹,部分是随机的,我需要将文件移动到该文件夹中。
%localappdata%\acroprint\TQP4_{随机字母串}\4.1.15.25435\
dim filesys, oShell
Set oShell = CreateObject("WScript.Shell")
strHomeFolder = oShell.ExpandEnvironmentStrings("%LOCALAPPDATA%")
set filesys=CreateObject("Scripting.FileSystemObject")
If filesys.FileExists("\\tstcfile\public\tqp41_15\user.config") Then
filesys.CopyFile "\\tstcfile\public\tqp41_15\user.config", strHomeFolder & "\Acroprint\TQP4_{random string of letters}\4.1.15.25435\", true
End If
到目前为止,这是我可以让脚本工作的最接近的。我的问题是每个桌面上唯一的随机数字和字母字符串。我知道我不能在目的地使用 *。有谁知道解决方法?
谢谢克里斯