Sub files_saveas()
# 定义文件选择框对象
Dim fd As FileDialog
Set fd = Application.FileDialog(msoFileDialogFolderPicker)
With fd
If .Show = -1 Then
selected_path = fd.SelectedItems(1)
End If
End With
# 定义文件管理器对象
'Dim fso As Object
Dim fso As New FileSystemObject
'Set fso = CreateObject("scripting.filesystemobject")
Dim dest_folder
dest_folder = selected_path & "\转换后文件\"
If Not fso