Slow file delete file from asp.net mvc project

When I remove any file from asp.net mvc project (project not in svn or some source control vendor) it takes more than 60 seconds for the UI. CPU utilization reaches 80/90%. Has anyone else experienced this and knew of any fix or solution?

0


source to share


3 answers


Yes, I had a similar problem. Just empty the trash and it will start deleting files again.



NTN

0


source


Do you want to remove a file from a Visual Studio solution? If so, fix it to empty the Windows Trash.



+1


source


If you are talking about a running website trying to delete a file, do the file deletion in a separate thread.

If you are talking about deleting the original file, I had this problem a few years ago. I don't remember what the fix was, but I don't think it's in the latest Visual Studio (which you probably use if you are doing MVC)

0


source







All Articles