VBS删除文件

  • 删除桌面文件
  • 文件名称为0.txt5.txt
  • 路径问题
    • 桌面\ & 1.txt才是在桌面删除文件1.txt
    • Administrator\桌面 & 1.txt在Administrator文件夹下删除的文件名是桌面1.txt
Dim file,fileName,getReturn
filePath = "C:\Documents and Settings\Administrator\桌面\" '文件路径
Set file=CreateObject("Scripting.FileSystemObject")
getReturn = MsgBox("确定要清除?", vbInformation + vbOKCancel, "警告提示")

if getReturn = vbOK then
	for i = 0 to 5
		fileName = i&".txt"
		file.DeleteFile(filePath & fileName)
	next
end if
上一篇:[CF1479B2/CF1480D2] Painting the Array II


下一篇:Pytorch模型转Tensorflow模型的那些事