gpt4 book ai didi

powershell 如果文件不存在日志字符串到文件

转载 作者:行者123 更新时间:2023-12-04 03:45:56 24 4
gpt4 key购买 nike

我在数据库中存储了很多文件路径。我需要检查文件是否确实存在。我以前做过这个,但丢失了它的脚本,需要一些帮助。

我将所有路径放在一个文本文件中,并想遍历它们,并检查它们是否存在。如果它们不存在,我想将不存在的路径放入日志文件中。

像这样:

# ! equals -not

$log = "e:\pshell\notExists.log"
$log | out-file $log

$list = Get-Content "e:\pshell\files.txt"

Foreach ($file in $list)
{
CHECK IF FILE EXISTS
IF IT DOESNT then Write-Output $file
}

帮助不大?

最佳答案

测试路径?

$log = "e:\pshell\notExists.log" $log | out-file $log

$list = Get-Content "e:\pshell\files.txt"

Foreach ($file in $list)
{
If (!(test-path $file))
{
Write-Output $file
}
}

关于powershell 如果文件不存在日志字符串到文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14837415/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com