zoukankan      html  css  js  c++  java
  • 找出文件正在被哪个windows进程使用的方法

    Ever try to delete, move, or rename a file only to get a Windows system warning with something like one of these messages?

    • "Cannot delete file: Access is denied"
    • "There has been a sharing violation"
    • "The source or destination file may be in use"
    • "The file is in use by another program or user".
    • "Make sure the disk is not full or write-protected and that the file is not currently in use"

    One of the best ways to handle locked files or folders is to use the free Microsoft program Process Explorer. The program has been described in another article and here is how to use it to find out what program, DLL, or handle is using a file or folder. You will need to run as administrator.

    How to find out what program is using a file

    In Windows 7 or 8, the system message may tell you what program is using the file. If it doesn’t or if you are using Windows XP, there is a simple way to find the program:

    1. Open Process Explorer, running as administrator.
    2. On the toolbar, find the gunsight icon on the right (shown highlighted in the figure shown below).
    3. Drag the icon and drop it on the open file or folder that is locked.
    4. The executable that is using the file will be highlighted in the Process Explorer main display list.

    How to find out which handle or DLL is using a file

    1. Open Process Explorer, running as administrator.
    2. Enter the keyboard shortcut Ctrl+F. Altenatively, click the “Find” menu and select “Find a Handle or DLL”.
    3. A search dialog box will open.
    4. Type in the name of the locked file or other file of interest. Partial names are usually sufficient.
    5. Click the button “Search”,
    6. A list will be generated. There may be a number of entries.
    7. An individual handle in the list can be killed by selecting it and pressing the delete key. However, care is necessary when deleting handles, as instabilities may occur. Often, just rebooting will free a locked file.

    Process Explorer can be downloaded here.

    A related article is Best Free Undeletable File Remover

    Get your own favorite tip published! Know a neat tech tip or trick? Then why not have it published here and receive full credit? Click here to tell us your tip.

    原文:http://www.techsupportalert.com/content/how-find-out-which-windows-process-using-file.htm

  • 相关阅读:
    增加一个基类没有的方法
    修改或加强基类的属性
    linux rm命令详解
    Apache的配置httpd.conf杂谈
    解决 You don't have permission to access / on this server. 错误的另一方法
    ubuntu下成功配置LAMP 并安装PHPMyadmin
    C#连接SQLite的方法
    内存使用大比拼 之 String – StringBuffer
    非常喜欢Gedit,绝不逊色EditPlus!
    关于内存
  • 原文地址:https://www.cnblogs.com/zhibolife/p/3672650.html
Copyright © 2011-2022 走看看