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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top