gpt4 book ai didi

vba - 检查文件夹中所有 CSV 文件的上次保存日期

转载 作者:行者123 更新时间:2023-12-04 22:09:33 26 4
gpt4 key购买 nike

我想真的很简单的问题。我如何修改以下内容,而不是查看 LOI.CSV,而是查看盘中文件夹中的所有 .CSV 文件?

LastSaved = FileDateTime("W:\Settlements\Intraday\LOT.csv")

If LastSaved < Date Then
MsgBox ("The current day file for LOI was last saved " & LastSaved)
End If

最佳答案

尝试这个

Const sPath As String = "W:\Settlements\Intraday\"

Sub LoopThroughFilesInAFolder()
Dim StrFile As String

StrFile = Dir(sPath & "\*.Csv")

Do While Len(StrFile) > 0
Debug.Print FileDateTime(sPath & "\" & StrFile)
'~~> Rest of the code here
StrFile = Dir
Loop
End Sub

关于vba - 检查文件夹中所有 CSV 文件的上次保存日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11470841/

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