Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4093114
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T19:34:39+00:00 2026-05-20T19:34:39+00:00

I am trying to access a remote network share from a C# program in

  • 0

I am trying to access a remote network share from a C# program in asp.net. What I need is something like

function download(dirname)
{
    directory = (This is the part I don't know how to do)

    for dir in directory:
        download(dir);

    for file in directory:
        copyfile(file);

}

My problem is that the directory requires a username and password for access and I don’t know how to provide them. Thanks for any help you can offer.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T19:34:39+00:00Added an answer on May 20, 2026 at 7:34 pm

    Use this class to authenticate and than just use simple file operations:

    /// <summary>
    /// Represents a network connection along with authentication to a network share.
    /// </summary>
    public class NetworkConnection : IDisposable
    {
        #region Variables
    
        /// <summary>
        /// The full path of the directory.
        /// </summary>
        private readonly string _networkName;
    
        #endregion
    
        #region Constructors
    
        /// <summary>
        /// Initializes a new instance of the <see cref="NetworkConnection"/> class.
        /// </summary>
        /// <param name="networkName">
        /// The full path of the network share.
        /// </param>
        /// <param name="credentials">
        /// The credentials to use when connecting to the network share.
        /// </param>
        public NetworkConnection(string networkName, NetworkCredential credentials)
        {
            _networkName = networkName;
    
            var netResource = new NetResource
                              {
                                  Scope = ResourceScope.GlobalNetwork, 
                                  ResourceType = ResourceType.Disk, 
                                  DisplayType = ResourceDisplaytype.Share, 
                                  RemoteName = networkName.TrimEnd('\\')
                              };
    
            var result = WNetAddConnection2(
                netResource, credentials.Password, credentials.UserName, 0);
    
            if (result != 0)
            {
                throw new Win32Exception(result);
            }
        }
    
        #endregion
    
        #region Events
    
        /// <summary>
        /// Occurs when this instance has been disposed.
        /// </summary>
        public event EventHandler<EventArgs> Disposed;
    
        #endregion
    
        #region Public methods
    
        /// <summary>
        /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
        /// </summary>
        public void Dispose()
        {
            Dispose(true);
            GC.SuppressFinalize(this);
        }
    
        #endregion
    
        #region Protected methods
    
        /// <summary>
        /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
        /// </summary>
        /// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        protected virtual void Dispose(bool disposing)
        {
            if (disposing)
            {
                var handler = Disposed;
                if (handler != null)
                    handler(this, EventArgs.Empty);
            }
    
            WNetCancelConnection2(_networkName, 0, true);
        }
    
        #endregion
    
        #region Private static methods
    
        /// <summary>
        ///The WNetAddConnection2 function makes a connection to a network resource. The function can redirect a local device to the network resource.
        /// </summary>
        /// <param name="netResource">A <see cref="NetResource"/> structure that specifies details of the proposed connection, such as information about the network resource, the local device, and the network resource provider.</param>
        /// <param name="password">The password to use when connecting to the network resource.</param>
        /// <param name="username">The username to use when connecting to the network resource.</param>
        /// <param name="flags">The flags. See http://msdn.microsoft.com/en-us/library/aa385413%28VS.85%29.aspx for more information.</param>
        /// <returns></returns>
        [DllImport("mpr.dll")]
        private static extern int WNetAddConnection2(NetResource netResource, 
                                                     string password, 
                                                     string username, 
                                                     int flags);
    
        /// <summary>
        /// The WNetCancelConnection2 function cancels an existing network connection. You can also call the function to remove remembered network connections that are not currently connected.
        /// </summary>
        /// <param name="name">Specifies the name of either the redirected local device or the remote network resource to disconnect from.</param>
        /// <param name="flags">Connection type. The following values are defined:
        /// 0: The system does not update information about the connection. If the connection was marked as persistent in the registry, the system continues to restore the connection at the next logon. If the connection was not marked as persistent, the function ignores the setting of the CONNECT_UPDATE_PROFILE flag.
        /// CONNECT_UPDATE_PROFILE: The system updates the user profile with the information that the connection is no longer a persistent one. The system will not restore this connection during subsequent logon operations. (Disconnecting resources using remote names has no effect on persistent connections.)
        /// </param>
        /// <param name="force">Specifies whether the disconnection should occur if there are open files or jobs on the connection. If this parameter is FALSE, the function fails if there are open files or jobs.</param>
        /// <returns></returns>
        [DllImport("mpr.dll")]
        private static extern int WNetCancelConnection2(string name, int flags, bool force);
    
        #endregion
    
        /// <summary>
        /// Finalizes an instance of the <see cref="NetworkConnection"/> class.
        /// Allows an <see cref="System.Object"></see> to attempt to free resources and perform other cleanup operations before the <see cref="System.Object"></see> is reclaimed by garbage collection.
        /// </summary>
        ~NetworkConnection()
        {
            Dispose(false);
        }
    }
    
    #region Objects needed for the Win32 functions
    #pragma warning disable 1591
    
    /// <summary>
    /// The net resource.
    /// </summary>
    [StructLayout(LayoutKind.Sequential)]
    public class NetResource
    {
        public ResourceScope Scope;
        public ResourceType ResourceType;
        public ResourceDisplaytype DisplayType;
        public int Usage;
        public string LocalName;
        public string RemoteName;
        public string Comment;
        public string Provider;
    }
    
    /// <summary>
    /// The resource scope.
    /// </summary>
    public enum ResourceScope
    {
        Connected = 1, 
        GlobalNetwork, 
        Remembered, 
        Recent, 
        Context
    } ;
    
    /// <summary>
    /// The resource type.
    /// </summary>
    public enum ResourceType
    {
        Any = 0, 
        Disk = 1, 
        Print = 2, 
        Reserved = 8, 
    }
    
    /// <summary>
    /// The resource displaytype.
    /// </summary>
    public enum ResourceDisplaytype
    {
        Generic = 0x0, 
        Domain = 0x01, 
        Server = 0x02, 
        Share = 0x03, 
        File = 0x04, 
        Group = 0x05, 
        Network = 0x06, 
        Root = 0x07, 
        Shareadmin = 0x08, 
        Directory = 0x09, 
        Tree = 0x0a, 
        Ndscontainer = 0x0b
    }
    #pragma warning restore 1591
    #endregion
    

    Usage:

    using(new NetworkConnection(_directoryPath, new NetworkCredential(_userName, _password)))
    {
        File.Copy(localPath, _directoryPath);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to create file in remote directory on network within .ashx asp.net
I am using .Net Remoting and trying to access a remote object modified in
I am trying to run a PS Remote session from Machine A to access
I'm trying to pull in data from a remote SQL Server. I can access
I have an asp.net page that is trying to access a SSRS 2008 ReportServer
Im trying to access a web service from a remote computer. I managed to
I am trying to use local port forwarding to access remote host over a
I'm trying to modify the access timestamp and modify timestamp of a remote file
Trying to access a Servlet from a button on HTML page //Html Page FORM
I'm trying to follow along this tutorial to enable remote access to MySQL. The

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.