VB中Dir函数的意思

Dir函数功能貌似很多,谁帮我一一讲解下。
2025-01-06 05:42:53
推荐回答(1个)
回答1:

Dir Function Returns a String representing the name of a file, directory, or folder that matches a specified pattern or file attribute, or the volume label of a drive.以上解释来自MSDN,意思是,dir函数返回一个代表有特定属性的文件名,目录名,或者一个文件夹名的字符串. 一般用来检测是否存在某文件或文件夹. 这是一个例子This example uses the Dir function to check if certain files and directories exist. Dim MyFile, MyPath, MyName ' Returns "WIN.INI" if it exists. MyFile = Dir("C:\WINDOWS\WIN.INI") 不明白请追问