1

问题是如何从 vbscript 打开保存和关闭文本文件。

我需要打开一个特定的 txt 文件,保存它,然后关闭该文本文件。

我可以打开一个文件:

Dim Objecttxt
Set Objecttxt = CreateObject("WScript.Shell")
Objecttxt.Run "notepad.exe d:\text.txt"

然后我尝试使用以下命令命令 txt 文件:

Objecttxt.SendKeys "^(s)", True

Objecttxt.SendKeys "%({F4})", True

但焦点未设置到记事本编辑器。

我还添加了以下行: Objecttxt.AppActivate "Text.txt - Kladblok", 800 但它似乎没有影响。命令:WScript.Sleep 800 不被接受(访问 2007)

有人可以告诉我:

  • 这是正确的方式

  • 这种方法如何工作?

谢谢

4

1 回答 1

0

例如,我将 .png 文件更改为 .jpg

Option Explicit
' Change the Extension you want to Replace
Const CHANGE_FROM = ".png"
Const CHANGE_TO = ".jpg"

' Var Declaration - Don't Change
Dim srcFolder
Dim objFSO, objFolder, oFolder
Dim colFiles

' Set the Source Folder to Begin With or you can dynamically find this if this is being used on multiple computers
srcFolder = "C:\Temp\Files"

' Object Sets - Don't Change
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFolder = objFSO.GetFolder(srcFolder)
Set colFiles = objFolder.Files

' Changes Files Extensions in Source Folder
ChangeExtension colFiles
' Change the Extension for Each Sub Folder in the Source Folder
GetFilesFromSubFolders objFolder

描述:子将递归检查每个文件夹的子文件夹对于每个子文件夹,它将提取文件并使用 ChangeExtension 更改文件扩展名输入:根文件夹对象输出:每个子文件夹的递归调用 - 更改文件扩展名

 --- Subs ---
 Sub GetFilesFromSubFolders(objRootFolder)
 Dim oSubFolders, oSubFol
 Dim colSubFolFiles
 ' Get the Sub Folders of the Root Folder
 Set oSubFolders = objRootFolder.SubFolders
 ' Check that Folder has Sub Folders
 If oSubFolders.Count > 0 Then
 ' For Each Sub Folder Call Recursevlly 
 For Each oSubFol In oSubFolders
 GetFilesFromSubFolders oSubFol
 Next 
 End If
 ' Get the Files in the folder
 Set colSubFolFiles = objRootFolder.Files 
 ' Change Files Extensions in Folder
 ChangeExtension colSubFolFiles
End Sub

Sub ChangeExtension(collectionSet)
' Description : Sub will Change the Extension 
' for Each File that has the Requested Extension
' Input  : Collection Set Object of Files
' Output : Changes the File Extension
Dim objFile
 ' For Each File in the Files Collection
 For Each objFile In collectionSet
 ' Check if File has the Requested Extension
 If InStr(objFile.Name,CHANGE_FROM) Then
 ' Checge the Extension
 objFile.Name = Replace(objFile.Name,CHANGE_FROM,CHANGE_TO)
 End If
 Next 
End Sub
于 2013-11-12T20:19:38.083 回答