Bunun gibi bir metin dosyası var:
4108689096 2531 ./ssss/132432.odt
481446057 2293 ./abc/a.txt
3157353085 1096 ./dsjvbjf/c.docx
653380669 1824 ./bcd/x.avi
Ve Powershell'de listeyi üçüncü sütuna göre sıralamak istiyorum, ancak Sort-Object
bu listeyi dosya ismine göre sıralıyorum ( /
her satırdaki son karakterden sonraki ilk karaktere göre ).
Böyle bir şey elde etmek isterim:
481446057 2293 ./abc/a.txt
653380669 1824 ./bcd/x.avi
3157353085 1096 ./dsjvbjf/c.docx
4108689096 2531 ./ssss/132432.odt
Bu yüzden de dahil olmak üzere bir dize olarak üçüncü sütuna göre sıralamak istiyorum .
, /
karakterler.
Düzenleme # 1: Bazı ilgili kodlar
# Gets a relative path based on a base and a full path (to file)
#
# Usage: RelativePath <path to file> <base path>
#
# Note: Specifying arguments is mandatory.
function global:RelativePath
{
param
(
[string]$path = $(throw "Missing: path"),
[string]$basepath = $(throw "Missing: base path")
)
return [system.io.path]::GetFullPath($path).SubString([system.io.path]::GetFullPath($basepath).Length + 1)
}
# Calculates CRC checksums for all files in the specified directory and writes
# the checksums to a file
#
# Usage: CRCSumAll <path to folder to check> <file conatining checksums>
#
# Note: Specifying arguments is mandatory.
function global:CRCSumAll
{
param($inputpath,$outputfile)
$allfiles=get-childitem $inputpath -rec | Where-Object {!($_.psiscontainer)} | Sort-Object Name
new-item -force -type file $outputfile
cd $inputpath
foreach ($file in $allfiles)
{
$relfile=RelativePath $file.fullname $inputpath
$relfile=$relfile -replace("\\","/")
$relfile="./$relfile"
cksum.exe $relfile | Out-File -Encoding OEM -Append $outputfile
}
}
Düzenleme # 2: Çözüm
Sorunun ne olduğunu anladım. Sıralamadan sonra göreceli yolları ekledim. Yani doğru kod:
function global:CRCSumAll
{
param($inputpath,$outputfile)
$allfiles=get-childitem $inputpath -rec | Where-Object {!($_.psiscontainer)} #| Sort-Object Name
new-item -force -type file $outputfile
cd $inputpath
foreach ($file in $allfiles)
{
$relfile=RelativePath $file.fullname $inputpath
$relfile=$relfile -replace("\\","/")
$relfile="./$relfile"
$relfile | Out-File -Encoding OEM -Append $outputfile
}
$sorted=Get-Content $outputfile | Sort-Object
new-item -force -type file $outputfile
$sorted | Out-File -Encoding OEM -Append $outputfile
$forcksum=Get-Content $outputfile
new-item -force -type file $outputfile
$forcksum | Foreach-Object { cksum.exe $_ | Out-File -Encoding OEM -Append $outputfile}
}
Şimdi sadece kodu biraz temizlemem gerekiyor, çünkü üç kez dosya yazmak gerçekten çok çirkin. :)