Flush disk write cache from Windows CLI

孤人 提交于 2019-12-03 10:38:23

I found the SysInternals Sync worked well for me - although it flushes ALL cache, not just for the specific folder.

Example of usage:

IF EXIST Output RD /S /Q Output && Sync && MD Output

By default it flushes all cached data for all drives - you can specify command-line options to restrict which drives but you cannot restrict it to just specific folders.

Without it I would often get Access denied errors because the MD was trying to create a new folder while the system was still in the process of deleting the old one.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!