gpt4 book ai didi

string - 如何从路径中提取文件名?

转载 作者:行者123 更新时间:2023-12-03 05:50:32 25 4
gpt4 key购买 nike

如何在 VBA 中从 C:\Documents\myfile.pdf 中提取文件名 myfile.pdf

最佳答案

在 Office 2000/2003 的 VBA 中处理文件和目录的最佳方法是使用脚本库。

创建一个文件系统对象并使用它执行所有操作。

早期绑定(bind):

添加对 Microsoft Scripting Runtime 的引用(IDE 中的“工具”>“引用”)。

Dim fso as new FileSystemObject
Dim fileName As String
fileName = fso.GetFileName("c:\any path\file.txt")

<强> Late binding (更多信息请参阅评论)

With CreateObject("Scripting.FileSystemObject")
fileName = .GetFileName(FilePath)
extName = .GetExtensionName(FilePath)
baseName = .GetBaseName(FilePath)
parentName = .GetParentFolderName(FilePath)
End With

FileSystemObject 很棒。它提供了很多功能,例如获取特殊文件夹(我的文档等),以面向对象的方式创建、移动、复制、删除文件和目录。

关于string - 如何从路径中提取文件名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1743328/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com