本文介绍了我想在删除C#时跳过正在使用的文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我尝试创建一个软件来清理临时文件夹中的文件但是在删除进度中,一些正在使用的文件会出错。我想跳过它并继续删除其他文件。
我尝试过:
我想在c#
I try to create a software to clean files in temp folder but in delete progress, some files in use make error. I want to skip it and continue delete other file.
What I have tried:
I want to skip file in use while delete in c#
推荐答案
try
{
... delete the file here ...
}
catch (IOException ex)
{
... log or ignore the error here ...
}
这篇关于我想在删除C#时跳过正在使用的文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!