detecting directory

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi;

I need to detect the window's user's my documents directory and
the available space on that drive.

I'm trying to do this in vb.net.

Segue.
 
segue said:
I need to detect the window's user's my documents directory

\\\
Imports System
..
..
..
Dim s As String = _
Environment.GetFolderPath(Environment.SpecialFolder.Personal)
///
 
Segue,
There are three solutions for finding the disk space if you take a look at
that link. You may want to take a closer look at each of them and see if
any of the three will do what you need.
 
Back
Top