Итак, у меня есть много файлов .txt. Мне нужно для этого, чтобы переместить текстовые файлы в определенную папку, если они имеют более 1 строки. То есть
Text text text
Blah blah blah
Но оставь это в покое, если это просто
Text text text
Есть предложения, как это сделать? Это на Windows XP, если это помогает. Спасибо!
РЕДАКТИРОВАТЬ: Спасибо Джон за ваши усилия. Придумал способ сделать это в PowerShell
# Specify folder name that will contain the filtered .txt files
$goodFolder = "Filtered"
get-childitem *.txt | foreach ($_) {
$a = get-Content $_.fullname | Measure-Object
# If more than one line is found in text file, move it. Otherwise, leave it alone
If ($a.Count -gt 1) { # If there is more than one line found in txt file
Move-Item $_.fullname $goodFolder # Then move it to a folder with text files with more than 1 line
}
}