将文件剪切到C#

前端之家收集整理的这篇文章主要介绍了将文件剪切到C#前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在寻找一种以编程方式将文件剪切到剪贴板的方法,例如,一些调用C#中的函数,与在 Windows Explorer中选择一个文件并按住Ctrl X相同.

运行程序并按下硬盘驱动器上其他文件夹中的Ctrl V后,原始文件将被移动到新文件夹.通过查看Stack Overflow问题Copy files to clipboard in C#,我知道复制工作很容易,但切割似乎工作不一样.我该怎么做?

解决方法

请尝试以下内容,翻译自 The Code Project文章 Setting the Clipboard File DropList with DropEffect in VB.NET
byte[] moveEffect = new byte[] {2,0};
MemoryStream dropEffect = new MemoryStream();
dropEffect.Write(moveEffect,moveEffect.Length);

DataObject data = new DataObject();
data.SetFileDropList(files);
data.SetData("Preferred DropEffect",dropEffect);

Clipboard.Clear();
Clipboard.SetDataObject(data,true);
原文链接:https://www.f2er.com/csharp/97509.html

猜你在找的C#相关文章