如何使用vbs重命名文件
如何使用vbs,删除文件名称包含”123”的字符串,比如说文件12315,12314要删除他们开头的123...
如何使用vbs,删除文件名称包含”123”的字符串,比如说文件12315,12314要删除他们开头的123
展开
展开全部
strFolder = "e:\temp"
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFolder = objFSO.GetFolder(strFolder)
Set colFiles = objFolder.Files
For Each strFile in colFiles
If Lcase(objFSO.GetExtensionName(strFile)) = "txt" Then
strNewName = Replace(strFile.Name, "123", "")
objFSO.MoveFile strFile, strFolder & "\" & strNewName
End If
Next
Set objFSO = Nothing
请按实际更改路径和文件扩展名。
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFolder = objFSO.GetFolder(strFolder)
Set colFiles = objFolder.Files
For Each strFile in colFiles
If Lcase(objFSO.GetExtensionName(strFile)) = "txt" Then
strNewName = Replace(strFile.Name, "123", "")
objFSO.MoveFile strFile, strFolder & "\" & strNewName
End If
Next
Set objFSO = Nothing
请按实际更改路径和文件扩展名。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询