📄 form1.cs
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.IO;
namespace NETUSE
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.TextBox txtCopyFile;
private System.Windows.Forms.Button btnTest;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;
public Form1()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.txtCopyFile = new System.Windows.Forms.TextBox();
this.btnTest = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// txtCopyFile
//
this.txtCopyFile.Location = new System.Drawing.Point(56, 80);
this.txtCopyFile.Name = "txtCopyFile";
this.txtCopyFile.Size = new System.Drawing.Size(192, 21);
this.txtCopyFile.TabIndex = 0;
this.txtCopyFile.Text = "";
//
// btnTest
//
this.btnTest.Location = new System.Drawing.Point(192, 136);
this.btnTest.Name = "btnTest";
this.btnTest.Size = new System.Drawing.Size(64, 24);
this.btnTest.TabIndex = 1;
this.btnTest.Text = "OK";
this.btnTest.Click += new System.EventHandler(this.btnTest_Click);
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.btnTest);
this.Controls.Add(this.txtCopyFile);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
public string ConnectLan(string p_Path,string p_UserName,string p_PassWord)
{
System.Diagnostics.Process _Process = new System.Diagnostics.Process();
_Process.StartInfo.FileName = "cmd.exe";
_Process.StartInfo.UseShellExecute = false;
_Process.StartInfo.RedirectStandardInput = true;
_Process.StartInfo.RedirectStandardOutput = true;
_Process.StartInfo.CreateNoWindow = true;
_Process.Start();
//NET USE \\192.168.0.1 PASSWORD /USER:UserName
_Process.StandardInput.WriteLine("net use " + p_Path + " " + p_PassWord + " /user:" + p_UserName);
_Process.StandardInput.WriteLine("exit");
_Process.WaitForExit();
string _ReturnText = _Process.StandardOutput.ReadToEnd();// 得到cmd.exe的输出
_Process.Close();
return _ReturnText;
}
private void btnTest_Click(object sender, System.EventArgs e)
{
string _Service=@"\\192.168.1.170";
//string _Path = "CallCenter";
ConnectLan(_Service, "Guest", "123");
string source = @"D:\\1.txt";
File.Copy(source,@"\\192.168.1.170\测试\1.txt",true);
// DirectoryInfo _Direct = new DirectoryInfo(_Service + "\\" + _Path);
// foreach (DirectoryInfo _SubDirect in _Direct.GetDirectories())
// {
// MessageBox.Show(_SubDirect.Name);
// }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -