質問編集履歴
1
投稿用に変数名を変更していましたが直し漏れがあったので修正しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -62,7 +62,7 @@
|
|
62
62
|
|
63
63
|
if ($item -like "*HHH*.txt") {
|
64
64
|
|
65
|
-
$h
|
65
|
+
$hhhFile = $item.LastWriteTime
|
66
66
|
|
67
67
|
}
|
68
68
|
|
@@ -76,7 +76,7 @@
|
|
76
76
|
|
77
77
|
# 両方取得したらフラグを立ててループを抜ける
|
78
78
|
|
79
|
-
If ( ($t_File -ne $null) -and ($h
|
79
|
+
If ( ($t_File -ne $null) -and ($hhhFile -ne $null )) {
|
80
80
|
|
81
81
|
$timeDiffTargetFileExits = $true
|
82
82
|
|
@@ -94,7 +94,7 @@
|
|
94
94
|
|
95
95
|
# 時刻の差を算出
|
96
96
|
|
97
|
-
$diff = New-TimeSpan $h
|
97
|
+
$diff = New-TimeSpan $hhhFile $t_File | Out-Null # 【←$diffに時差を取得したいが$nullになってしまい】
|
98
98
|
|
99
99
|
|
100
100
|
|