VBA Name 修改文件夹名称

修改文件夹名称。


语法

Name oldName As newName

将文件夹oldName 的名称修改为 newName。

Name也支持修改文件的名称。


示例

例:将文件夹C:\xiaobuteach\test 名称改为 C:\xiaobuteach\test2

Sub sub5_2()

  Name "C:\xiaobuteach\test" As "C:\xiaobuteach\test2"

End Sub

如果其中oldName("C:\xiaobuteach\test")文件夹不存在,会报错:文件未找到。

如果其中newName("C:\xiaobuteach\test2")文件夹已存在,会报错:文件已存在。