加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > Windows > 正文

如何在Windows上自动找到损坏的符号链接?

发布时间:2020-12-13 19:43:04 所属栏目:Windows 来源:网络整理
导读:不确定这是不好的风格,但我在这里问这个问题,因为我在其他地方找不到答案,然后我自己制定了一个解决方案.我有兴趣看到其他人的解决方案,但过了几天我会发布自己的解决方案. 在我的具体情况下,我在Windows 7上运行,但我对其他/旧版Windows的答案感兴趣.我意识
不确定这是不好的风格,但我在这里问这个问题,因为我在其他地方找不到答案,然后我自己制定了一个解决方案.我有兴趣看到其他人的解决方案,但过了几天我会发布自己的解决方案.

在我的具体情况下,我在Windows 7上运行,但我对其他/旧版Windows的答案感兴趣.我意识到一个答案是“安装一个版本的Unix查找,然后是solve as for Unix”,但我想要一个更“本机”的解决方案.

编辑2012-07-17:澄清:通过“自动”我理想地意味着我可以作为脚本的一部分运行,而不是一个GUI工具,按下按钮完成所有工作,因为我想要做这无人看管.

有些迟了,但这是我对自己问题的回答.它与Unix上通常使用的方法基本相同:找到所有链接,然后根据破坏的链接进行操作;它不是那么简洁.在转出有关它们的一些信息后,下面的脚本会删除损坏的符号链接.
@echo off

rem Grab the list of directories to scan,before we "pushd to dir containing this script",rem so that we can have the default be "dir from which we ran this script".
setlocal
if x%CD%==x (echo Command Extensions must be enabled. && goto :eof)
set ORIGINAL_DIR=%CD%

pushd %~dp0

set DIRS_TO_CHECK=%*
if x%DIRS_TO_CHECK%==x (
    set DIRS_TO_CHECK=.
)

rem Find all the files which are both links (/al) and directories (/ad).
rem (We use "delims=" in case any paths have a space; space is a delim by default.)
rem If not,delete it (and assume something else will fix it later :-).
echo Deleting broken symlinks ...
echo.
for %%D in (%ORIGINAL_DIR%%DIRS_TO_CHECK%) do (
    echo Checking %%D
    echo.
    pushd %%D
    if errorlevel 1 (
        echo Cannot find "%%D"
        echo.
        goto :Next_Dir
    )
    rem Clean up broken directory links.
    for /f "usebackq delims=" %%L in (`dir /adl /b`) do (
        rem Check the directory link works.
        rem Redirecting to nul just to hide "The system cannot find the file specified." message.
        pushd "%%L" >nul 2>&1
        if errorlevel 1 (
            echo Deleting broken directory symlink "%%L".
            rem First dump out some info on the link,before we delete it.
            rem I'd rather a more human-readable form,but don't know how to get that.
            fsutil reparsepoint query "%%L"
            rmdir "%%L"
            echo.
        ) else (
            popd
        )
    )
    rem Clean up broken file (non-directory) links.
    for /f "usebackq delims=" %%L in (`dir /a-dl /b`) do (
        rem Check the file link works.
        rem Redirecting to nul just to hide "The system cannot find the file specified." message.
        copy "%%L" nul >nul 2>&1
        if errorlevel 1 (
            echo Deleting broken file symlink "%%L".
            rem First dump out some info on the link,but don't know how to get that.
            fsutil reparsepoint query "%%L"
            rm "%%L"
            echo.
        ) else (
            popd
        )
    )
    popd
    :Next_Dir
    rem Putting a label on the line immediately before a ')' causes a batch file parse error,hence this comment.
)
echo Deleting broken symlinks ... done.

:Finally
popd

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读