vb 当前目录"."与上层目录“..”问题
Dim RootPath As StringDim FoundDir As String
RootPath = "c:\"
FoundDir = Dir(RootPath, vbDirectory)
If ((FoundDir <> ".") And (FoundDir <> "..")) Then '---跳过当前的目录"."及上层目录“..”
请问当前目录是"c:\" 还是其他什么目录? 上层目录是针对谁的上层目录?
盼回贴