Click here to Skip to main content
6,822,613 members and growing! (16,089 online)
Email Password   helpLost your password?
Platforms, Frameworks & Libraries » .NET Framework » How To     Intermediate

How to create a file share using .NET framework

By Softomatix

How to create a file share using NetApi with PInvoke in Microsoft .NET framework
C#.NET1.0, Win2K, WinXP, Visual-Studio, Dev
Posted:27 May 2003
Views:104,807
Bookmarked:31 times
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
17 votes for this article.
Popularity: 4.79 Rating: 3.89 out of 5
2 votes, 11.8%
1
2 votes, 11.8%
2
1 vote, 5.9%
3
3 votes, 17.6%
4
9 votes, 52.9%
5

Introduction

Title of this article says how to create a file share using .NET framework. But if you really get down to bottom of it, there is no class or method in .NET framework that accomplishes this task. This is the time when we take help from PInvoke to call unmanaged Win32 API. The NetApi in Win32 platform provides a rich set of functions that allows us to do network management.

Details

Network Management API provides following functions to manage file shares.

  • NetShareAdd
  • NetShareDel
  • NetShareCheck
  • NetShareGetInfo
  • NetShareSetInfo

The names of these APIs are very self explanatory. They do what their names suggest. In this article we will show how you can use NetShareAdd API to create a new file share on an existing folder in a machine. Following code is a complete example of how you can use this API with PInvoke in .NET framework to create a share.

There are couple of important points in this code that we would like to highlight.

  • SHARE_INFO_502 structure that contains the share information requires that all strings should be Wide Character strings. Therefore it is important that when you define the structure, use MarshalAs attribute to specify that string should be marshalled appropriately as Wide Character type. You can specify the value foe the attribute as UnmanagedType.LPWStr.
  • In SHARE_INFO_502 structure you can specify the permissions by specifying a Security Descriptor that has the required ACL. If you set the value of shi502_security_descriptor variable to 0, then a null DACL is set on the file share meaning that Everybody has full access to this share.

Code

using System;
using System.Diagnostics;
using System.Collections;
using System.Runtime.InteropServices;
using ActiveDs;

namespace ADSI_Net
{
    class NetApi32
    {
        public enum NetError
        {
            NERR_Success = 0,
            NERR_BASE = 2100,
            NERR_UnknownDevDir = (NERR_BASE + 16),
            NERR_DuplicateShare = (NERR_BASE + 18),
            NERR_BufTooSmall = (NERR_BASE + 23),
        }

        public enum SHARE_TYPE : ulong
        {
            STYPE_DISKTREE = 0,
            STYPE_PRINTQ = 1,
            STYPE_DEVICE = 2,
            STYPE_IPC = 3,
            STYPE_SPECIAL = 0x80000000,
        }

        [ StructLayout( LayoutKind.Sequential )]
        public struct SHARE_INFO_502
        {
            [MarshalAs(UnmanagedType.LPWStr)]
            public string shi502_netname;
            public uint shi502_type;
            [MarshalAs(UnmanagedType.LPWStr)]
            public string shi502_remark;
            public Int32 shi502_permissions;
            public Int32 shi502_max_uses;
            public Int32 shi502_current_uses;
            [MarshalAs(UnmanagedType.LPWStr)]
            public string shi502_path;
            public IntPtr shi502_passwd;
            public Int32 shi502_reserved;
            public IntPtr shi502_security_descriptor;
        }

        [DllImport("Netapi32.dll")]
        public static extern int NetShareAdd(
                [MarshalAs(UnmanagedType.LPWStr)]
        string strServer, Int32 dwLevel, IntPtr buf, IntPtr parm_err);


    }
    
    class AD_ShareUtil
    {
        [STAThread]
        static void Main(string[] args)
        {
            string strServer = @"HellRaiser";
            string strShareFolder = @"G:\Mp3folder";
            string strShareName = @"MyMP3Share";
            string strShareDesc = @"Share to store MP3 files";
            NetApi32.NetError nRetVal = 0;
            AD_ShareUtil shUtil = new AD_ShareUtil();
            nRetVal = shUtil.CreateShare(strServer, 
              strShareFolder, strShareName, strShareDesc, false);
            if (nRetVal == NetApi32.NetError.NERR_Success)
            {
                Console.WriteLine("Share {0} created", strShareName);
            }
            else if (nRetVal == NetApi32.NetError.NERR_DuplicateShare)
            {
                Console.WriteLine("Share {0} already exists", 
                          strShareName);
            }
        }

        NetApi32.NetError CreateShare(string strServer,
                                      string strPath,
                                      string strShareName,
                                      string strShareDesc,
                                      bool bAdmin)
        {
            NetApi32.SHARE_INFO_502 shInfo = 
                  new ADSI_Net.NetApi32.SHARE_INFO_502();
            shInfo.shi502_netname = strShareName;
            shInfo.shi502_type = 
                (uint)NetApi32.SHARE_TYPE.STYPE_DISKTREE;
            if (bAdmin)
            {
                shInfo.shi502_type = 
                    (uint)NetApi32.SHARE_TYPE.STYPE_SPECIAL;
                shInfo.shi502_netname += "$";
            }
            shInfo.shi502_permissions = 0;
            shInfo.shi502_path = strPath;
            shInfo.shi502_passwd = IntPtr.Zero;
            shInfo.shi502_remark = strShareDesc;
            shInfo.shi502_max_uses = -1;
            shInfo.shi502_security_descriptor = IntPtr.Zero;

            string strTargetServer = strServer;
            if (strServer.Length != 0)
            {
                strTargetServer = strServer;
                if (strServer[0] != '\\')
                {
                    strTargetServer = "\\\\" + strServer;
                }
            }
            int nRetValue = 0;
            // Call Net API to add the share..
            int nStSize = Marshal.SizeOf(shInfo);
            IntPtr buffer = Marshal.AllocCoTaskMem(nStSize);
            Marshal.StructureToPtr(shInfo, buffer, false);
            nRetValue = NetApi32.NetShareAdd(strTargetServer, 502, 
                    buffer, IntPtr.Zero);
            Marshal.FreeCoTaskMem( buffer );

            return (NetApi32.NetError)nRetValue;
        }
    }
}                       
                            

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

About the Author

Softomatix


Member
To learn more about us, Please visit us at http://www.netomatix.com
Occupation: Web Developer
Location: United States United States

Other popular .NET Framework articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 25 (Total in Forum: 25) (Refresh)FirstPrevNext
QuestionProblem regarding folder on desktop of Vista Machine PinmemberDDeepali3:14 5 Dec '07  
GeneralDelete Share returning 2310 ? Pinsusssushilchoudhari9:55 24 Nov '04  
GeneralRe: Delete Share returning 2310 ? Pinmembersushilchoudhari16:21 24 Nov '04  
GeneralRe: Delete Share returning 2310 ? PinsussAmar K. Velmala4:18 14 Apr '05  
GeneralUPDATE for VB.Net Pinmembermef52616:38 15 Nov '04  
GeneralHow about Macintosh Share? PinmemberAVETAR18:12 10 Mar '04  
GeneralRe: How about Macintosh Share? PinsussAnonymous7:04 10 Nov '04  
GeneralRe: How about Macintosh Share? PinmemberAVETAR11:02 10 Nov '04  
GeneralRe: How about Macintosh Share? PinsussAnonymous7:20 2 Jul '05  
GeneralRemoving Shares Pinmemberjcawley@10:40 1 Aug '03  
GeneralRe: Removing Shares PinsussAnonymous14:20 9 Sep '03  
GeneralRe: Removing Shares PinsussAnonymous3:44 1 Apr '04  
GeneralPermissions? PinmemberWilliam Bartholomew17:59 2 Jun '03  
GeneralRe: Permissions? PinmemberSoftomatix14:11 3 Jun '03  
GeneralRe: Permissions? PinmemberWilliam Bartholomew14:17 3 Jun '03  
GeneralRe: Permissions? PinmemberMatt Wynn6:43 28 Nov '03  
GeneralRe: Permissions? PinmemberDave Anderson14:52 22 Dec '03  
GeneralRe: Permissions? Pinmembermbakirov21:17 22 Sep '05  
GeneralRe: Permissions? Pinmembersid_boss2:06 8 Feb '07  
GeneralOther .NET ways to create shares... PinmemberFocht0:13 29 May '03  
GeneralRe: Other .NET ways to create shares... PinmemberMark DiGiovanni9:06 18 Dec '06  
GeneralWhy? PinmemberRocky Moore21:38 27 May '03  
GeneralRe: Why? PinmemberSoftomatix2:22 28 May '03  
GeneralRe: Why? PinsussAnonymous2:45 7 Jul '03  
GeneralRe: Why? Pinmemberrahtrow4:42 28 May '03  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

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

PermaLink | Privacy | Terms of Use
Last Updated: 27 May 2003
Editor: Nishant Sivakumar
Copyright 2003 by Softomatix
Everything else Copyright © CodeProject, 1999-2010
Web21 | Advertise on the Code Project