Waiting for system to delete file

后端 未结 7 665
野的像风
野的像风 2020-12-06 00:12

I had a problem with refreshing file list after deleting a file. When I gave command to delete file, the exception was thrown because the refresh method tried to access a fi

7条回答
  •  醉话见心
    2020-12-06 00:36

    Directory.Delete will throw an exception on the first error it encounters. If you want to continue deleting as many files and subdirectories as you can then you shouldn't use Directory.Delete and should write your own recursive delete with try/catch blocks inside the loops. An example when you might want to do that is if you are trying to cleanup temp files and one of the files has been locked.

提交回复
热议问题