SpecialDirectoriesProxy Class
This API supports the product infrastructure and is not intended to be used directly from your code.
Provides properties for accessing commonly referenced directories.
Assembly: Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)
| Name | Description | |
|---|---|---|
![]() | AllUsersApplicationData | This API supports the product infrastructure and is not intended to be used directly from your code. Gets a path name pointing to the Application Data directory for the all users. |
![]() | CurrentUserApplicationData | This API supports the product infrastructure and is not intended to be used directly from your code. Gets a path name pointing to the Application Data directory for the current user. |
![]() | Desktop | This API supports the product infrastructure and is not intended to be used directly from your code. Gets a path name pointing to the Desktop directory. |
![]() | MyDocuments | This API supports the product infrastructure and is not intended to be used directly from your code. Gets a path name pointing to the My Documents directory. |
![]() | MyMusic | This API supports the product infrastructure and is not intended to be used directly from your code. Gets a path name pointing to the My Music directory. |
![]() | MyPictures | This API supports the product infrastructure and is not intended to be used directly from your code. Gets a path name pointing to the My Pictures directory. |
![]() | ProgramFiles | This API supports the product infrastructure and is not intended to be used directly from your code. Gets a path pointing to the Program Files directory. |
![]() | Programs | This API supports the product infrastructure and is not intended to be used directly from your code. Gets a path name pointing to the Programs directory. |
![]() | Temp | This API supports the product infrastructure and is not intended to be used directly from your code. Gets a path name pointing to the Temp directory. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
If the path for the referenced directory is empty, usually due to the operating system not supporting the directory, a DirectoryNotFoundException exception is thrown.
No backslash (\) appears at the end of the path.
The following table lists examples of tasks involving the My.Computer.FileSystem.SpecialDirectories object.
To | See |
|---|---|
Read from the MyDocuments directory | How to: Retrieve the Contents of the My Documents Directory in Visual Basic |
Project type | Available |
|---|---|
Windows Application | Yes |
Class Library | Yes |
Console Application | Yes |
Windows Control Library | Yes |
Web Control Library | Yes |
Windows Service | Yes |
Web Site | Yes |
This example returns the filePath for the user's Desktop directory and displays it.
Dim filePath As String filePath = My.Computer.FileSystem.SpecialDirectories.Desktop MsgBox(filePath)
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


