当前位置: 首页 > 图文教程 > 脚本技术 > VBScript > vbs实现的支持拖动的txt文本切割器

VBScript
VBS教程:方法-GetDrive 方法
VBS教程:方法-GetBaseName 方法
VBS教程:方法-GetAbsolutePathName 方法
VBS教程:方法-FolderExists 方法
VBS教程:方法-FileExists 方法
VBS教程:方法-Exists 方法
VBS教程:方法-DriveExists 方法
VBS教程:方法-DeleteFolder 方法
VBS教程:方法-DeleteFile 方法
VBS教程:方法-Delete 方法
VBS教程:方法-CreateTextFile 方法
VBS教程:方法-CreateFolder 方法
VBS教程:方法-CopyFolder 方法
VBS教程:方法-CopyFile 方法
VBS教程:方法-Copy 方法
VBS教程:方法-Close 方法
VBS教程:方法-BuildPath 方法
VBS教程:方法-AddFolders 方法(Folders)
VBS教程:方法-Add 方法(Dictionary)
VBS教程:VBScript 语句-With 语句

VBScript 中的 vbs实现的支持拖动的txt文本切割器


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 112 ::
收藏到网摘: n/a

SplitFile.vbs
'/*=========================================================================
' * Intro .txt文本切割器,默认为8000个字符切为一个文件。支持拖动。
' * FileName SplitFile.vbs
' * Author yongfa365
' * Version v1.0
' * MadeTime 2008-04-24 12:58:43
' * LastModify 2008-04-24 12:58:43
' *==========================================================================*/
Set objArgs = WScript.Arguments
If objArgs.Count = 0 Then
IIIII InputBox("选择要处理的文本文件", , "选择要处理的文本文件")
Else
For I001 = 0 To objArgs.Count - 1
IIIII objArgs(I001)
Next
End If
Function IIIII(Path)
TempStr = ReadFromFile(Path, "gb2312")
Length = Len(TempStr)
iii = 0
For II = 0 To Length step 8000 '8000个字符切为一个文件
iii = iii + 1
WriteToFile Left(Path, Len(Path) -4) & "_" & Right("00" & iii, 3) & ".txt" , Mid(TempStr, II + 1, 8000), "gb2312"
Next
End Function

Function ReadFromFile(FileUrl, CharSet)
Dim Str
Set stm = CreateObject("Adodb.Stream")
stm.Type = 2
stm.mode = 3
stm.charset = CharSet
stm.Open
stm.loadfromfile FileUrl
Str = stm.readtext
stm.Close
Set stm = Nothing
ReadFromFile = Str
End Function
'按指定编码存储文件
Function WriteToFile (FileUrl, Str, CharSet)
Set stm = CreateObject("Adodb.Stream")
stm.Type = 2
stm.mode = 3
stm.charset = CharSet
stm.Open
stm.WriteText Str
stm.SaveToFile FileUrl, 2
stm.flush
stm.Close
Set stm = Nothing
End Function