Create network share (C#)

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

Guest

Just wondering if .Net 2.0 introduced anything new with respect to creating
network shares, or are we still left to use WMI? If yes - there is something
new - please be so kind as to point me in the right direction. Also, I'm
biased toward C#, so any examples would be appreciated especially those in c#
:)

Much appreciated.
David Martin
 
| Just wondering if .Net 2.0 introduced anything new with respect to
creating
| network shares, or are we still left to use WMI? If yes - there is
something
| new - please be so kind as to point me in the right direction. Also, I'm
| biased toward C#, so any examples would be appreciated especially those in
c#
| :)
|
| Much appreciated.
| David Martin
|

WMI is a service based interface that won't go away any time soon, and the
System.Management classes are just OO wrappers around this interface, so
they become accessible from managed code like C#.

Willy.
 
Back
Top