最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

vbs操作txt文本文件常用方法與函數(shù)代碼

 更新時間:2018年06月01日 23:33:58   投稿:mdxy-dxy  
這篇文章主要介紹了vbs操作txt文本文件常用方法與函數(shù)代碼,需要的朋友可以參考下

'creat by 席飛劍(小席老師)

'操作文本文件,操作fso對象(文件對象操作)

函數(shù)代碼

創(chuàng)建文件

dim fso, f
set fso = server.CreateObject("Scripting.FileSystemObject")
set f = fso.CreateTextFile("C:\test.txt", true) '第二個參數(shù)表示目標文件存在時是否覆蓋
f.Write("寫入內(nèi)容")
f.WriteLine("寫入內(nèi)容并換行")
f.WriteBlankLines(3) '寫入三個空白行(相當于在文本編輯器中按三次回車)
f.Close()
set f = nothing
set fso = nothing

打開并讀文件

dim fso, f
set fso = server.CreateObject("Scripting.FileSystemObject")
set f = fso.OpenTextFile("C:\test.txt", 1, false) '第二個參數(shù) 1 表示只讀打開,第三個參數(shù)表示目標文件不存在時是否創(chuàng)建
f.Skip(3) '將當前位置向后移三個字符
f.SkipLine() '將當前位置移動到下一行的第一個字符,注意:無參數(shù)
response.Write f.Read(3) '從當前位置向后讀取三個字符,并將當前位置向后移三個字符
response.Write f.ReadLine() '從當前位置向后讀取直到遇到換行符(不讀取換行符),并將當前位置移動到下一行的第一個字符,注意:無參數(shù)
response.Write f.ReadAll() '從當前位置向后讀取,直到文件結(jié)束,并將當前位置移動到文件的最后
if f.atEndOfLine then
  response.Write("一行的結(jié)尾!")
end if
if f.atEndOfStream then
  response.Write("文件的結(jié)尾!")
end if
f.Close()
set f = nothing
set fso = nothing

打開并寫文件

dim fso, f
set fso = server.CreateObject("Scripting.FileSystemObject")
set f = fso.OpenTextFile("C:\test.txt", 2, false) '第二個參數(shù) 2 表示重寫,如果是 8 表示追加
f.Write("寫入內(nèi)容")
f.WriteLine("寫入內(nèi)容并換行")
f.WriteBlankLines(3) '寫入三個空白行(相當于在文本編輯器中按三次回車)
f.Close()
set f = nothing
set fso = nothing

判斷文件是否存在

dim fso
set fso = server.CreateObject("Scripting.FileSystemObject")
if fso.FileExists("C:\test.txt") then
  response.Write("目標文件存在")
else
  response.Write("目標文件不存在")
end if
set fso = nothing

移動文件

dim fso
set fso = server.CreateObject("Scripting.FileSystemObject")
call fso.MoveFile("C:\test.txt", "D:\test111.txt") '兩個參數(shù)的文件名部分可以不同
set fso = nothing

復制文件

dim fso
set fso = server.CreateObject("Scripting.FileSystemObject")
call fso.CopyFile("C:\test.txt", "D:\test111.txt") '兩個參數(shù)的文件名部分可以不同
set fso = nothing

刪除文件

dim fso
set fso = server.CreateObject("Scripting.FileSystemObject")
fso.DeleteFile("C:\test.txt")
set fso = nothing

創(chuàng)建文件夾

dim fso
set fso = server.CreateObject("Scripting.FileSystemObject")
fso.CreateFolder("C:\test") '目標文件夾的父文件夾必須存在
set fso = nothing

判斷文件夾是否存在

dim fso
set fso = server.CreateObject("Scripting.FileSystemObject")
if fso.FolderExists("C:\Windows") then
  response.Write("目標文件夾存在")
else
  response.Write("目標文件夾不存在")
end if
set fso = nothing

刪除文件夾

dim fso
set fso = server.CreateObject("Scripting.FileSystemObject")
fso.DeleteFolder("C:\test") '文件夾不必為空
set fso = nothing

這篇文章就介紹到這,更多的大家可以查看腳本之家以前發(fā)布的關于vbs txt操作的相關文章。

相關文章

最新評論

山阴县| 平乡县| 瓮安县| 成都市| 广平县| 和顺县| 武安市| 合江县| 忻城县| 岳池县| 昌都县| 龙州县| 鄄城县| 隆子县| 浦北县| 延吉市| 高唐县| 安达市| 双鸭山市| 田林县| 海宁市| 霍州市| 洛扎县| 钟祥市| 西藏| 岑溪市| 科尔| 奉新县| 韩城市| 双鸭山市| 荔浦县| 冀州市| 靖安县| 浪卡子县| 方正县| 惠州市| 报价| 绥中县| 鹤岗市| 韶关市| 图木舒克市|