VBScript 文件操作代碼小結
來源:易賢網 閱讀:1626 次 日期:2016-07-18 15:10:52
溫馨提示:易賢網小編為您整理了“VBScript 文件操作代碼小結”,方便廣大網友查閱!

下面是一些vbs下常用到的一些文件操作代碼,整理了下方便以后開發(fā)使用,提高效率。

創(chuàng)建文本文件

代碼如下:

Set objFSO = CreateObject("Scripting.FileSystemObject")

Set objFile = objFSO.CreateTextFile("C:\FSO\ScriptLog.txt")

檢察文件是否存在

代碼如下:

Set objFSO = CreateObject("Scripting.FileSystemObject")

If objFSO.FileExists("C:\FSO\ScriptLog.txt") Then

Set objFolder = objFSO.GetFile("C:\FSO\ScriptLog.txt")

Else

Wscript.Echo "File does not exist."

End If

刪除文本文件

代碼如下:

Set objFSO = CreateObject("Scripting.FileSystemObject")

objFSO.DeleteFile("C:\FSO\ScriptLog.txt")

重命名文件

代碼如下:

Set objFSO = CreateObject("Scripting.FileSystemObject")

objFSO.MoveFile "C:\FSO\ScriptLog.txt" , "C:\FSO\BackupLog.txt"

文本操作

讀取全部內容

代碼如下:

Const ForReading = 1

Set objFSO = CreateObject("Scripting.FileSystemObject")

Set objFile = objFSO.OpenTextFile("C:\Scripts\Test.txt", ForReading)

strContents = objFile.ReadAll

objFile.Close

一行行的讀取文本文件內容

代碼如下:

Const ForReading = 1

Set objFSO = CreateObject("Scripting.FileSystemObject")

Set objTextFile = objFSO.OpenTextFile ("c:\scripts\servers.txt", ForReading)

Do Until objTextFile.AtEndOfStream

strComputer = objTextFile.ReadLine

Wscript.Echo strComputer

Loop

objTextFile.Close

追加文本文件一行內容

代碼如下:

Const ForAppending = 8

Set objFSO = CreateObject("Scripting.FileSystemObject")

Set objTextFile = objFSO.OpenTextFile ("C:\Scripts\Service_Status.txt", ForAppending, True)

objTextFile.WriteLine("追加的內容")

objTextFile.Close

有用的幾個函數:

替換:將Jim替換成James。

代碼如下:

strNewText = Replace(strText, "Jim ", "James ")

用逗號分隔字符串:

代碼如下:

arrpath=split(strDN,",")

wscript.echo arrpath(0)

幾個實例:

讀取文本文件指定的行內容(讀第四行內容存到strLine變量中)

代碼如下:

Const ForReading = 1

Set objFSO = CreateObject("Scripting.FileSystemObject") Set objTextFile = objFSO.OpenTextFile("mylogfile.log", ForReading)

For i = 1 to 3 objTextFile.ReadLine Next

strLine = objTextFile.ReadLine Wscript.Echo strLine

objTextFile.Close

更多信息請查看腳本欄目
易賢網手機網站地址:VBScript 文件操作代碼小結

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯系我們 | 人才招聘 | 網站聲明 | 網站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權所有:易賢網