C# 向共享文件中写入数据
先写一个判断此时是否可以正常连接网络共享主机:private static bool connectState() { bool flag = false; Process process = new Process(); try { process.StartInfo.FileName = "cmd.exe"; process.StartInfo.UseShellExe...