C#实现在软件中复制本地程序文件

来源:互联网 发布:程序员外包平台 编辑:程序博客网 时间:2024/04/29 09:26
  • System.Collections.Specialized.StringCollection list = new System.Collections.Specialized.StringCollection();
    list.Add(@"E:\TEST.exe");
    Clipboard.SetFileDropList(list);
0 0