MC 是否独立于操作系统库和内核工作?
Midnight Commander (MC) 的 Windows 版本是否独立于 Windows 库工作?我的意思是它有自己的方式从磁盘读取数据还是使用操作系统的功能? 如果它不是独立的,您知道有任何文件管理器吗? (这可能吗?)
非常感谢任何帮助。
Does the windows version of Midnight Commander (MC) work independently from Windows libraries? I mean does it have it's own way of reading data off the disk or is it using the OS's abilities?
If it's not independent do you know of any file manager that is? (Is it possible?)
Any help is greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只有Windows内核和设备驱动程序可以直接访问磁盘;所有用户模式程序都必须使用 Windows API(例如 FindFirstFile)。
Only the windows kernel, and device drivers, can access the disks directly; all user mode programs must use the windows API (e.g. FindFirstFile).
您希望MC直接访问HDD控制器吗?如果不是,则无论您使用哪种文件管理器,您都将处理 Windows 文件系统驱动程序堆栈。
Do you want MC to access the HDD controller directly? If no, you'll deal with Windows file system driver stack no matter what file manager you use.