如何在VB.net中引用当前Windows用户的视频文件夹路径

问题描述 投票:0回答:2

我正在寻找一种方法来引用 VB.NET 中当前用户的“MyVideos”文件夹。

我的目标是使用此引用来设置我的

InitialDirectory
对象的
OpenFileDialog
属性。这是有什么谎言:

OpenFileDialog1.InitialDirectory = My.Computer.FileSystem.SpecialDirectories.MyDocuments

SpecialDirectories
下,我找不到MyVideos的属性。我在
SpecialDirectories
下拥有的唯一属性是:

.Desktop
.MyDocuments
.MyMusic
.MyPictures
.Programfiles
.Programs
.Temp

我错过了什么吗?还有其他方法可以访问此信息吗?

我能够获取用户的根文件夹,并将其与“视频”合并,如下所示:

Dim vidPath As String = System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), "Videos")

但是,假设用户没有更改其位置属性中的

My Videos
文件夹的位置。

我想提出一种引用此位置的方法,以防用户更改此位置设置。

vb.net windows environment-variables openfiledialog
2个回答
3
投票

Environment.SpecialFolder
枚举中缺失的文件夹可通过 API 调用获得。对此有几个 C# 答案,大部分是部分答案(获取特定文件夹)。所有(?)缺失的 VB 版本:

Public Partial Class NativeMethods

    <DllImport("shell32.dll")>
    Private Shared Function SHGetKnownFolderPath(<MarshalAs(UnmanagedType.LPStruct)> 
                                            rfid As Guid,
                                            dwFlags As UInt32,
                                            hToken As IntPtr,
                                            ByRef pszPath As IntPtr) As Int32
    End Function

   ' in order, below are:
    Public Enum ShellSpecialFolders
        Contacts
        Downloads
        Links
        Music
        Pictures
        SavedGames
        SavedSearches
        Videos
    End Enum

    Private Shared ShellFolderGuids As Guid() = {
                        Guid.Parse("{56784854-C6CB-462B-8169-88E350ACB882}"),
                        Guid.Parse("{374DE290-123F-4565-9164-39C4925E467B}"),
                        Guid.Parse("{BFB9D5E0-C6A9-404C-B2B2-AE6DB6AF4968}"),
                        Guid.Parse("{4BD8D571-6D19-48D3-BE97-422220080E43}"),
                        Guid.Parse("{33E28130-4E1E-4676-835A-98395C3BC3BB}"),
                        Guid.Parse("{4C5C32FF-BB9D-43B0-B5B4-2D72E54EAAA4}"),
                        Guid.Parse("{7D1D3A04-DEBB-4115-95CF-2F29DA2920DA}"),
                        Guid.Parse("{18989B1D-99B5-455B-841C-AB7C74E4DDFC}")
                                         }

    Friend Shared Function GetSpecialFolder(folder As ShellSpecialFolders) As String
        Dim ret As Int32
        Dim fPath As IntPtr
        ' == "Dont Vertify" flag:
        Dim SHFlag As UInt32 = &H4000

        ret = SHGetKnownFolderPath(ShellFolderGuids(folder), SHFlag,
                                   New IntPtr(0), fPath)

        If ret = 0 Then
            Return Marshal.PtrToStringUni(fPath)
        Else
            Return ""
        End If
    End Function

    ' Optional single purpose version
    Friend Shared Function GetSpecialVideoFolder() As String
        Return GetSpecialFolder(ShellSpecialFolders.Videos)
    End Function
'...
End Class

使用示例:

spath = NativeMethods.GetSpecialFolder(NativeMethods.ShellSpecialFolders.Videos)
Console.WriteLine("Videos are in: {0}", spath)

或者如果您想为它们编写包装器:

spath = NativeMethods.GetSpecialVideoFolder()

如果您想获取默认文件夹(而不是

C:\Users\USER NAME\...
,您会得到
C:\Users\Default\...
),请将
IntPtr
参数更改为 -1:

ret = SHGetKnownFolderPath(ShellFolderGuids(folder), SHFlag,
                               New IntPtr(-1), fPath)

结果:

注意:返回的文件夹显然不需要存在。特别是使用默认版本时,返回的几个文件夹实际上并不存在于我的系统上。


0
投票

https://learn.microsoft.com/en-us/dotnet/api/system.environment.specialfolder?view=net-8.0

VB.NET OpenFileDialog1.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.CommonVideos)

© www.soinside.com 2019 - 2024. All rights reserved.