资源简介

代码实现创建共享文件夹,其他连接电脑具有所有权限

调用方法:  ShareHelper.Fun_NetShare("SensorCode","C:\\SensorCode");具体调用方式就可以了 

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Management;
using System.Collections;
using System.Diagnostics;
using System.IO;

namespace Autoframe
{
    public class ShareHelper
    {
        //   ShareHelper.Fun_NetShare(“SensorCode““C:\\SensorCode“);具体调用方式就可以了 

        public static void Fun_NetShare(string strshareName string folderpath int milliseconds = 2000)
        {
            if (!Directory.Exists(folderpath))
            {
                Directory.CreateDirectory(folderpath);
            }
            if (!string.IsNullOrEmpty(strshareName))
            {
                Process process = new Process();     //创建进程对象
                ProcessStartInfo startInfo = new Pr

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2162  2020-05-19 17:54  ShareHelper.cs

评论

共有 条评论