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.
如何在 vb6 中强制完全删除、重命名和替换文本文件/日志文件。我正在对日志文件执行一些操作,最后用新的日志文件替换原始日志文件,但应用程序仍在使用原始日志。
这里是删除
Sub DeleteAFile(filePath) Dim fso Set fso = CreateObject("Scripting.FileSystemObject") fso.DeleteFile(filePath) End Sub
只是弄乱 FileSystemObject 类,它有删除、重命名、创建等方法。