将Outlook文件夹结构复制到Windows资源管理器中

问题描述 投票:1回答:1

这是我执行此任务的代码。问题出在Windows中的无效字符。我可以在文件上很好地替换它们,但是在文件夹中似乎不起作用。

Dim xFSO As Scripting.FileSystemObject
Sub CopyOutlookFldStructureToWinExplorer()
    ExportAction "Copy"
End Sub

Sub ExportAction(xAction As String)
Dim xFolder As Outlook.Folder
Dim xFldPath As String
xFldPath = SelectAFolder()
If xFldPath = "" Then
    MsgBox "You did not select a folder. Export cancelled.", vbInformation + vbOKOnly, "Kutools for Outlook"
Else
    Set xFSO = New Scripting.FileSystemObject
    Set xFolder = Outlook.Application.ActiveExplorer.CurrentFolder
    ExportOutlookFolder xFolder, xFldPath
End If
Set xFolder = Nothing
Set xFSO = Nothing
End Sub

Sub ExportOutlookFolder(ByVal OutlookFolder As Outlook.Folder, xFldPath As String)
Dim xSubFld As Outlook.Folder
Dim xItem As Object
Dim xPath As String
Dim xFilePath As String
Dim xSubject As String
Dim xFilename As String
On Error Resume Next
xPath = xFldPath & "\" & OutlookFolder.Name
'?????????,??????
If Dir(xPath, 16) = Empty Then MkDir xPath
For Each xItem In OutlookFolder.Items
    xItem = ReplaceInvalidCharacters(xItem.Item)
    xSubject = ReplaceInvalidCharacters(xItem.Subject)
    xSubFld = ReplaceInvalidCharacters(xItem.SubFld)
    xFldPath = ReplaceInvalidCharacters(xItem.FldPath)
    xPath = ReplaceInvalidCharacters(xItem.Path)
    xSubject = ReplaceInvalidCharacters(xItem.Subject)
    xFilename = xSubject & ".msg"
    xFilename = ReplaceInvalidCharacters(xItem.FileName)
    xFilePath = xPath & "\" & xFilename
    xFilePath = ReplaceInvalidCharacters(xItem.FilePath)
    If xFSO.FileExists(xFilePath) Then
        xCounter = xCounter + 1
        xFilename = xSubject & " (" & xCounter & ").msg"
        xFilePath = xPath & "\" & xFilename
        xFilePath = ReplaceInvalidCharacters(xItem.FilePath)
    End If
    xItem.SaveAs xFilePath, olMSG
Next
For Each xSubFld In OutlookFolder.Folders
    ExportOutlookFolder xSubFld, xPath
Next
Set OutlookFolder = Nothing
Set xItem = Nothing
End Sub

Function SelectAFolder() As String
Dim xSelFolder As Object
Dim xShell As Object
On Error Resume Next
Set xShell = CreateObject("Shell.Application")
Set xSelFolder = xShell.BrowseForFolder(0, "Select a folder", 0, 0)
If Not TypeName(xSelFolder) = "Nothing" Then
    SelectAFolder = xSelFolder.self.Path
End If
Set xSelFolder = Nothing
Set xShell = Nothing
End Function

Function ReplaceInvalidCharacters(Str As String) As String
Dim xRegEx
Set xRegEx = CreateObject("vbscript.regexp")
xRegEx.Global = True
xRegEx.IgnoreCase = False
xRegEx.Pattern = "\||\/|\<|\>|""|:|\*|\\|\?"
ReplaceInvalidCharacters = xRegEx.Replace(Str, "_")
End Function
vba directory outlook subdirectory
1个回答
0
投票
  1. 始终在每个模块的顶部使用Option Explicit,然后再使用任何功能。这将告诉您是否尚未Dim设置任何变量。在这种情况下,xCountxCounter存在问题,它们应该只有一个名称。

  2. 我认为问题来自函数ExportOutlookFolder,此行:xPath = xFldPath & "\" & OutlookFolder.Name尝试将其替换为:xPath = xFldPath & "\" & ReplaceInvalidCharacters(OutlookFolder.Name)

© www.soinside.com 2019 - 2024. All rights reserved.