本文介绍了如何使用 C# 从回收站恢复文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

将文件移动到回收站和清空回收站都有详细记录,但如何以编程方式从回收站中恢复文件?

Moving files to the recycle bin and emptying the recycle bin are well documented, but how can a file be programmatically restored from the recycle bin?

推荐答案

在纯 C# 中似乎没有解决方案.您很可能不得不求助于 P/Invoke.本文 介绍了使用 SHFileOperation API.

There seems not to be a solution in pure C#. You most likely have to resort to P/Invoke.This article presents a solution in C++ using the SHFileOperation API.

这篇关于如何使用 C# 从回收站恢复文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-17 00:59