我创建一个.vbs文件(可以:创建文本文件 - >打开notepad.exe - >删除上面的文件),如下所示:
' Create a new file
Dim objFS, objFile
Set objFS = CreateObject("Scripting.FileSystemObject")
Set objFile = objFS.CreateTextFile("D:\Folder\Textfile.txt")
objFile.WriteLine ("sample text")
' Run a program and wait
WScript.CreateObject("WScript.Shell").Run "notepad.exe", 1, true
' Delete file
objFS.Deletefile("D:\Folder\Textfile.txt")
但是当我运行它时,在关闭记事本窗口后,它会显示错误消息:
Line: 10
Char: 1
Error: Permission denied
Code: 800A0046
Source: Microsoft VBScript runtime error
我不知道为什么这个.vbs不能删除文本文件?谢谢你的帮助!
答案 0 :(得分:3)
在尝试删除脚本之前,必须先关闭脚本中的文件句柄。
NSInteger tagVal = (UIButton*)click.tag;