对于我缺乏基本的 VB.net 知识,我深表歉意,但我希望使用相当于 %systemdrive% 的驱动器来查找包含 Windows 的驱动器,以检查 VB.net 中的现有目录 - 所以我有以下内容。
Dim systemPath As String = Mid(Environment.GetFolderPath(Environment.SpecialFolder.System), 1, 3)
If Not Directory.Exists("'systemPath'\MyFolder") Then
Directory.CreateDirectory("'systemPath'\MyFolder")
End If
有人可以帮助在目录查询中使用 systemPath 字符串吗?谢谢你。