复制文件
2023-2-11 乱云飞
Dim S As StringS = Environ("temp")
FileCopy "1.txt", S & "\1.txt"
-----------------------------
FileCopy "1.txt", Environ("temp") & "\1.txt"
2023-2-11 乱云飞
Dim S As StringFileCopy "1.txt", S & "\1.txt"
-----------------------------
FileCopy "1.txt", Environ("temp") & "\1.txt"
发表评论: