Click here to Skip to main content
15,879,535 members
Articles / Desktop Programming / MFC
Article

Simple class to work with the NetShare*() APIs

Rate me:
Please Sign up or sign in to vote.
4.73/5 (5 votes)
19 Apr 20041 min read 40.5K   1.3K   13   4
Simple class to work with the NetShare*() APIs.

Sample Image - NTShares.jpg

Introduction

Working with the Net*() NT APIs can be a pain. Having experienced this pain a while back, I decided to take some code I had and make it into an article. This is just a simple class to perform just the basics: enumerating, adding, deleting and updating shares on a local or remote computer. It can be expanded further to get and set security configuration. Enterprise level development would likely use active directory to manipulate shares, this class works with NT4 style domains and workgroups as well as Win2000 networks not using active directory.

Using the code

Here's part of the class. The public fields are where we retrieve share configuration after a First() / Next() call. All but one are documented in the SDK. The m_fIsAdmin is not there. It just means that the share was created by the system, such as the hidden shares created for fixed drives.

class CNTShares : public CObject
{
...Privates omitted
public:
  CString m_sName;
  CString m_sRemark;
  CString m_sPath;
  DWORD   m_dwShareType;
  DWORD   m_dwCurrentConnections;
  int     m_nMaxConnections;
  BOOL    m_fIsAdmin;
  
  void  First(LPCTSTR pszServer);
  BOOL  Next();
  void  Add(LPCTSTR pszServer,LPCTSTR pszName,LPCTSTR pszRemark,
                              LPCTSTR pszPath,int nMaxConnections);
  void  Delete(LPCTSTR pszServer,LPCTSTR pszName);
  void  Update(LPCTSTR pszServer,LPCTSTR pszName,LPCTSTR pszRemark,
                              LPCTSTR pszPath,int nMaxConnections);
};

Note that all the classes' methods can throw a CWin32Exception, a CException derived class included in the zip file. Makes it easier to catch API style errors.

Use is simple, first instantiate an instance...

// Instantiate an instance
    
CNTShares m_Shares;

Then use the First() / Next() methods to enumerate shares. The machine name gets passed into the First() method. Note that the Next() method needs to be called after the First() method to actually know if there are any shares to enumerate or left for enumeration. Internally, the index is set to -1 in First(), and incremented in Next().

TRY
{
  m_Shares.First(sServer);
  while (m_Shares.Next())
  {
    // Do something with the instance fields...
  };
}
CATCH(CWin32Exception,e)
{
  e->ReportError();
  return;
}
END_CATCH

To add a share...

// Computer name can be an empty string for the local machine, path name is 
// local to the machine name, and -1 indicates that there is an unlimited # of 
// connections allowed

m_Share.Add(_T("ComputerName"),_T("ShareName"),_T("c:\Path"),_T("Remark"),-1);

To delete a share...

// Delete "ShareName" on "ComputerName"

m_Share.Delete(_T("ComputerName"),_T("ShareName"));

Finally, to update a share

// Update a share. "ShareName" must exist on "ComputerName"

m_Share.Update(_T("ComputerName"),_T("ShareName"),_T("c:\Path"),_T("Remark"),-1);

History

  • April 19 2004
    • Initial release.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralNice work Pin
micutzu26-Aug-05 0:52
micutzu26-Aug-05 0:52 
Questionhow to compile in VC6 Pin
KmAshif27-Apr-04 20:29
KmAshif27-Apr-04 20:29 
i want compile this project in VC6..how could it posssible.
AnswerRe: how to compile in VC6 Pin
John Gonzalez4-May-04 7:41
John Gonzalez4-May-04 7:41 
AnswerRe: how to compile in VC6 Pin
John Gonzalez6-May-04 22:17
John Gonzalez6-May-04 22:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.