네트워크 드라이브 연결하기
using System; using System.Collections.Generic; using System.Text; using System.Runtime.InteropServices; namespace RGQueenClient { class NetworkDriveConnect { /// /// NETSOURCE 구조체 선언 /// [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)] public struct NETSOURCE { public uint dwScope; public uint dwType; public uint dwDisplayType; public uint dwUsage; public string IPLocalName; public..