我使用下面進入路徑「我的文檔」文件夾在Windows 7中,並通過其目錄遍歷:與Environment.GetFolderPath(Environment.SpecialFolder.Personal)意外目錄
Dim diri As New DirectoryInfo(Environment.GetFolderPath(Environment.SpecialFolder.Personal))
For Each diri In diri.GetDirectories
MessageBox.Show(diri.Name)
Next
其中一個消息框我得到的是一個'我的音樂'文件夾。我的'我的文檔'文件夾中沒有該文件夾。
這是預期的行爲?