gpt4 book ai didi

vba - Excel 2010 VBA 中的 Dir 函数不起作用

转载 作者:行者123 更新时间:2023-12-02 07:55:19 34 4
gpt4 key购买 nike

我正在尝试循环遍历给定目录以查找最新下载的 csv 文件。由于某种原因,即使文件确实存在,我的 Dir 函数也找不到任何文件。我对 VBA 并不完全熟悉,所以我可能缺少某种执行 Dir 函数的引用,但我在网上找不到任何东西告诉我我需要这样做。所有的示例和论坛都像我一样使用 Dir,但我无法让我的工作。这是代码,如果您能看到我做错了什么,请告诉我:

Public Function Get_File() as string
Dim filePath As String

ChDir ("..")
filePath = CurDir
'Goes back to Documents directory to be in same directory as macro
ChDir (filePath & "\Documents")
filePath = filePath & "\Downloads\test.txt"
filePath = getLatestFile(filePath)

Get_File = filePath
End Function

Public Function getLatestFile(pathToFile As String) As String
Dim StrFile As String
Dim lastMod As Variant
Dim nextMod As Variant
Dim lastFileName As String

StrFile = Dir(pathToFile)
lastFileName = StrFile
lastMod = FileDateTime(StrFile)
While Len(StrFile) > 0
Debug.Print StrFile
StrFile = Dir
nextMod = FileDateTime(StrFile)
If nextMod > lastMod Then
lastFileName = StrFile
lastMod = nextMod
End If
Wend

getLatestFile = lastFileName
End Function

test.txt 文件位于我的下载文件中,并且 filePath 字符串打印出来是正确的路径,但我不断收到错误消息,指出找不到该文件。第一次使用 Dir(pathToFile) 时失败。任何帮助将不胜感激。

最佳答案

Dir() 仅返回路径的文件名部分,即,它不返回文件夹部分。例如,

Dir("C:\MyPath\MyFile.txt")

返回MyFile.txt而不是C:\MyPath\MyFile.txt

关于vba - Excel 2010 VBA 中的 Dir 函数不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11675162/

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