windows 显示写入硬盘驱动器进程的工具?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/368450/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-09 05:51:54  来源:igfitidea点击:

Tool to show processes writing to the hard drive?

windowsprocesshard-drive

提问by gfrizzle

Is there a tool that will show me what applications are writing to the hard drive in real time? I'm thinking something like Task Manager but for I/O. I've got a number of background processes running, and can never tell when Visual Studio is holding everything up, or some other process is hogging the disk (especially when the processor is running at less than 20%).

是否有工具可以实时显示哪些应用程序正在写入硬盘驱动器?我正在考虑类似于任务管理器的东西,但用于 I/O。我有许多后台进程正在运行,并且永远无法判断 Visual Studio 何时阻止了一切,或者其他某个进程正在占用磁盘(尤其是当处理器运行速度低于 20% 时)。

回答by Dirk Vollmar

ProcMonfrom Sysinternals/Microsoft.

来自 Sysinternals/Microsoft 的ProcMon

回答by Mick

Process Explorer from Microsoft SysInternals.You can view this info about all processes at once, or get even more detailed information when you double-click on a single process.

Microsoft SysInternals 的进程资源管理器。您可以一次查看有关所有进程的信息,或者在双击单个进程时获得更详细的信息。

This is one of those tools I can't live without.

这是我离不开的工具之一。

alt text
(source: microsoft.com)

替代文字
(来源:microsoft.com

alt text
(source: microsoft.com)

替代文字
(来源:microsoft.com

回答by The Archetypal Paul

You're aware Task maanger can have columns for

你知道任务管理器可以有列

  • I/O Reads
  • I/O Read bytes
  • I/O Writes
  • I/O Write bytes
  • I/O Other
  • I/O Other bytes
  • I/O 读取
  • I/O 读取字节
  • I/O 写入
  • I/O 写入字节
  • 输入/输出其他
  • I/O 其他字节

? That might help - see View/Select Columns

? 这可能会有所帮助 - 请参阅查看/选择列

回答by duhaime

One can retrieve information on processes writing to disk by opening the Windows Task Manager--> Performance--> Resource Monitor

可以通过打开 Windows Task Manager--> Performance-->来检索有关写入磁盘的进程的信息Resource Monitor

Resource Monitor can drill down to disk usage by process:

资源监视器可以按进程深入了解磁盘使用情况:

enter image description here

在此处输入图片说明