แสดงขนาดไฟล์ที่มนุษย์สามารถอ่านได้ในคำสั่ง PowerShell ls ที่เป็นค่าเริ่มต้น


25

ฉันจะแก้ไขค่าเริ่มต้นls( Get-ChildItem) ใน PowerShell เพื่อให้แสดงขนาดไฟล์ที่มนุษย์สามารถอ่านได้เช่นls -hบนเครื่อง * nix อย่างไร

ls -lh ทำตรรกะง่ายๆกับขนาดไฟล์เพื่อให้แสดงเป็นไบต์สำหรับไฟล์ขนาดเล็กจริง ๆ กิโลไบต์สำหรับไฟล์ที่เกิน 1K (ที่มีทศนิยมหนึ่งตำแหน่งถ้าต่ำกว่า 10K) และเมกะไบต์สำหรับไฟล์ที่เกิน 1M (ที่มีทศนิยมหนึ่งตำแหน่งถ้าต่ำกว่า 10MB) .

คำตอบ:


10

ลองนี้

PS> gc c:\scripts\type\shrf.ps1xml

<Types>
<Type>
  <Name>System.IO.FileInfo</Name>
   <Members>
      <ScriptProperty>
          <Name>FileSize</Name>
          <GetScriptBlock>
             switch($this.length) {
               { $_ -gt 1tb } 
                      { "{0:n2} TB" -f ($_ / 1tb) }
               { $_ -gt 1gb } 
                      { "{0:n2} GB" -f ($_ / 1gb) }
               { $_ -gt 1mb } 
                      { "{0:n2} MB " -f ($_ / 1mb) }
               { $_ -gt 1kb } 
                      { "{0:n2} KB " -f ($_ / 1Kb) }
               default  
                      { "{0} B " -f $_} 
             }      
          </GetScriptBlock>
     </ScriptProperty>   
  </Members>
</Type>
</Types>

PS> Update-TypeData -AppendPath c:\scripts\type\shrf.ps1xml -verbose
PS> get-childItem $env:windir  | select Name,FileSize,length
PS> # you can paste this in your profile
PS> 

คุณยังสามารถใช้ข้อมูลประเภทไดนามิกกับ PS3:

   PS> Update-TypeData -TypeName System.IO.FileInfo -MemberName FileSize -MemberType ScriptProperty -Value { 

    switch($this.length) {
               { $_ -gt 1tb } 
                      { "{0:n2} TB" -f ($_ / 1tb) }
               { $_ -gt 1gb } 
                      { "{0:n2} GB" -f ($_ / 1gb) }
               { $_ -gt 1mb } 
                      { "{0:n2} MB " -f ($_ / 1mb) }
               { $_ -gt 1kb } 
                      { "{0:n2} KB " -f ($_ / 1Kb) }
               default  
                      { "{0} B " -f $_} 
             }      

 } -DefaultDisplayPropertySet Mode,LastWriteTime,FileSize,Name

ฉันชอบที่จะสร้างเป็นสถานที่พิเศษ ปัญหาเดียวที่ฉันใช้กับ PS3 คือฉันได้รับ: Update-TypeData : Error in TypeData "System.IO.FileInfo": The member DefaultDisplayPropertySet is already present.ใช้ PS3 รุ่นล่าสุดจาก 9/4
Tom Mayfield

3
คำตอบที่ดี! มันยากที่จะเชื่อว่าไม่มีสวิตช์สำหรับGet-ChildItemสิ่งที่จะทำสิ่งนี้นอกกรอบ
เบ็ลคอลลินส์

คำตอบยอดเยี่ยม แต่มีใคร-DefaultDisplayPropertySetต้องทำงานไหม
Nick Cox

ไม่ทำงานเหมือน @ ThomasG.Mayfield พูด
ChrisBrownie55

14

ก่อนอื่นให้สร้างฟังก์ชั่นต่อไปนี้:

Function Format-FileSize() {
    Param ([int]$size)
    If     ($size -gt 1TB) {[string]::Format("{0:0.00} TB", $size / 1TB)}
    ElseIf ($size -gt 1GB) {[string]::Format("{0:0.00} GB", $size / 1GB)}
    ElseIf ($size -gt 1MB) {[string]::Format("{0:0.00} MB", $size / 1MB)}
    ElseIf ($size -gt 1KB) {[string]::Format("{0:0.00} kB", $size / 1KB)}
    ElseIf ($size -gt 0)   {[string]::Format("{0:0.00} B", $size)}
    Else                   {""}
}

จากนั้นคุณสามารถไพพ์เอาต์พุตของการGet-ChildItemผ่านSelect-Objectและใช้คุณสมบัติที่คำนวณได้เพื่อจัดรูปแบบขนาดไฟล์:

Get-ChildItem | Select-Object Name, @{Name="Size";Expression={Format-FileSize($_.Length)}}

แน่นอนว่าสามารถปรับปรุงฟังก์ชั่นการใช้งานสำหรับขนาดในช่วง PB และอื่น ๆ หรือเพื่อเปลี่ยนจำนวนทศนิยมตามความจำเป็น


มีเหตุผลที่ไม่สามารถสร้างนามแฝงเพื่อทำสิ่งนี้เป็น gethilditem เอง (ตรวจสอบว่ามีแฟล็ก -lh หรืออะไรบางอย่างและถ้าไม่เช่นนั้นให้ใช้ Get-ChildItem มิฉะนั้นจะใช้สิ่งนี้)
soandos

คุณไม่สามารถสร้างนามแฝงสำหรับคำสั่ง piped หรือลบล้างนามแฝงเริ่มต้น หากคุณสามารถใช้ชีวิตด้วยการใช้นามแฝงเช่นls2ลองสร้างฟังก์ชั่นอื่นที่ทำตรรกะที่คุณอธิบายตามพารามิเตอร์แล้วเพิ่มชื่อแทน ดูที่นี่สำหรับข้อมูลเพิ่มเติมเกี่ยวกับการสร้างชื่อแทน
Indrek

หรือค้นหาไฟล์การจัดรูปแบบที่กำหนดเองเพื่อขยายเอาต์พุต cmdlet ดูหัวข้อฟอรัมนี้สำหรับตัวอย่าง นอกจากนี้หากต้องการให้ฟังก์ชันการจัดรูปแบบยังคงอยู่ในเซสชัน PowerShell ให้เพิ่มลงในไฟล์โปรไฟล์ของคุณ (ดูGet-Variable profileตำแหน่งของมัน)
Indrek

1
สำหรับผมฟังก์ชั่นนี้ไม่ได้ไฟล์งานขนาดใหญ่กว่า ~ 2GB เป็น$size ที่ถูกกำหนดให้เป็นintซึ่งเป็น สำหรับการทำงานกับไฟล์ขนาดใหญ่กำหนดเป็นหรือ int32$sizeint64uint64
Alex Leach

Select-Object : Es wurde kein Positionsparameter gefunden, der das Argument "System.Collections.Hashtable" akzeptiert.ฉันได้รับ ฉันจะระบุเส้นทางได้อย่างไร $pst= Get-ChildItem -Path $home_user -Filter *.pst -Recurse -File| Sort-Object Length -Descending | ForEach-Object{ $_.FullName}ฉันใช้ ใช้งานได้ แต่ไม่มีขนาดไฟล์
ติโม

5

บางอย่างเช่นรายการต่อไปนี้สำหรับการระบุขนาดไฟล์ ใช่มันเจ็บตาเล็กน้อย แต่มันก็จัดการเพื่อให้งานเสร็จ

สำหรับการแปลงเป็น KB:

ls | Select-Object Name, @{Name="KiloBytes";Expression={$_.Length / 1KB}}

สำหรับการแปลงเป็น MB:

ls | Select-Object Name, @{Name="MegaBytes";Expression={$_.Length / 1MB}}

1
คำตอบที่ดีที่สุดโดยไม่มีสคริปต์ / ฟังก์ชั่น pipeแก้ปัญหา!
Timo

3

ขึ้นอยู่กับคำตอบโดย walid toumi:

ขั้นตอนการทำ:

  • สร้างไฟล์ประเภทของคุณเองด้วยFileSize-Property ใหม่
  • เปลี่ยนรูปแบบเอาต์พุตมาตรฐานสำหรับ FileInfo
  • โหลดการเปลี่ยนแปลงใน $PROFILE

สร้างไฟล์ประเภทของคุณเองด้วยFileSize-Property ใหม่

  • สร้างไฟล์ประเภทของคุณเอง: MyTypes.ps1xml
    (ฉันใส่ไว้$Env:USERPROFILE\Documents\WindowsPowershellดังนั้นถัดจากฉัน$PROFILE)

    <?xml version="1.0" encoding="utf-8" ?>
    <Types>
        <Type>
            <Name>System.IO.FileInfo</Name>
            <Members>
                <ScriptProperty>
                    <!-- Filesize converts the length to a human readable
                        format (kb, mb, gb, tb) -->
                    <Name>FileSize</Name>
                    <GetScriptBlock>
                        switch($this.length) {
                            { $_ -gt 1tb } 
                                { "{0:n2} TB" -f ($_ / 1tb) ; break }
                            { $_ -gt 1gb } 
                                { "{0:n2} GB" -f ($_ / 1gb) ; break }
                            { $_ -gt 1mb } 
                                { "{0:n2} MB " -f ($_ / 1mb) ; break }
                            { $_ -gt 1kb } 
                                { "{0:n2} KB " -f ($_ / 1Kb) ; break }
                            default
                                { "{0}  B " -f $_}
                        }
                    </GetScriptBlock>
                </ScriptProperty>
            </Members>
        </Type>
    </Types>
  • โหลดคุณสมบัติใหม่ใน powershell-session:

    • Update-TypeData -PrependPath $Env:USERPROFILE\Documents\WindowsPowershell\MyTypes.ps1xml
  • ลองคุณสมบัติใหม่
    • Get-ChildItem | Format-Table -Property Name, Length, FileSize

เปลี่ยนรูปแบบเอาต์พุตมาตรฐานสำหรับ FileInfo

  • สร้าง Fileformat-file ของคุณเอง: MyFileFormat.format.ps1xml (อีกครั้งใน$Env:USERPROFILE\Documents\WindowsPowershell\)

    <?xml version="1.0" encoding="utf-8" ?> 
    <Configuration>
        <SelectionSets>
            <SelectionSet>
                <Name>FileSystemTypes</Name>
                <Types>
                    <TypeName>System.IO.DirectoryInfo</TypeName>
                    <TypeName>System.IO.FileInfo</TypeName>
                </Types>
            </SelectionSet>
        </SelectionSets>
    
        <!-- ################ GLOBAL CONTROL DEFINITIONS ################ -->
        <Controls>
            <Control>
                <Name>FileSystemTypes-GroupingFormat</Name>
                        <CustomControl>
                            <CustomEntries>
                                <CustomEntry>
                                    <CustomItem>
                                        <Frame>
                                            <LeftIndent>4</LeftIndent>
                                            <CustomItem>
                                                <Text AssemblyName="System.Management.Automation" BaseName="FileSystemProviderStrings" ResourceId="DirectoryDisplayGrouping"/>
                                                <ExpressionBinding>
                                                  <ScriptBlock>
                                                      $_.PSParentPath.Replace("Microsoft.PowerShell.Core\FileSystem::", "")                                                  
                                                  </ScriptBlock>
                                                </ExpressionBinding>
                                                <NewLine/>
                                            </CustomItem> 
                                        </Frame>
                                    </CustomItem>
                                </CustomEntry>
                            </CustomEntries>
                </CustomControl>
            </Control>
        </Controls>
    
        <!-- ################ VIEW DEFINITIONS ################ -->
    
        <ViewDefinitions>
           <View>
                <Name>children</Name>
                <ViewSelectedBy>
                    <SelectionSetName>FileSystemTypes</SelectionSetName>
                </ViewSelectedBy>
                <GroupBy>
                    <PropertyName>PSParentPath</PropertyName> 
                    <CustomControlName>FileSystemTypes-GroupingFormat</CustomControlName>  
                </GroupBy>
                <TableControl>
                    <TableHeaders>
                       <TableColumnHeader>
                          <Label>Mode</Label>
                          <Width>7</Width>
                          <Alignment>left</Alignment>
                       </TableColumnHeader>
                        <TableColumnHeader>
                            <Label>LastWriteTime</Label>
                            <Width>25</Width>
                            <Alignment>right</Alignment>
                        </TableColumnHeader>
                        <TableColumnHeader>
                            <Label>FileSize</Label>
                            <Width>14</Width>
                            <Alignment>right</Alignment>
                        </TableColumnHeader>
                        <TableColumnHeader/>
                    </TableHeaders>
                    <TableRowEntries>
                        <TableRowEntry>
                            <Wrap/>
                            <TableColumnItems>
                                <TableColumnItem>
                                    <PropertyName>Mode</PropertyName>
                                </TableColumnItem>
                                <TableColumnItem>
                                    <ScriptBlock>
                                        [String]::Format("{0,10}  {1,8}", $_.LastWriteTime.ToString("d"), $_.LastWriteTime.ToString("t"))
                                    </ScriptBlock>
                                </TableColumnItem>
                                <TableColumnItem>
                                <PropertyName>FileSize</PropertyName>
                                </TableColumnItem>
                                <TableColumnItem>
                                    <PropertyName>Name</PropertyName>
                                </TableColumnItem>
                            </TableColumnItems>
                        </TableRowEntry>
                    </TableRowEntries>
                </TableControl>
            </View>
            <View>
                <Name>children</Name>
                <ViewSelectedBy>
                    <SelectionSetName>FileSystemTypes</SelectionSetName>
                </ViewSelectedBy>
                <GroupBy>
                    <PropertyName>PSParentPath</PropertyName> 
                    <CustomControlName>FileSystemTypes-GroupingFormat</CustomControlName>  
                </GroupBy>
                <ListControl>
                    <ListEntries>
                        <ListEntry>
                            <EntrySelectedBy>
                                <TypeName>System.IO.FileInfo</TypeName>
                            </EntrySelectedBy>
                            <ListItems>
                                <ListItem>
                                    <PropertyName>Name</PropertyName>
                                </ListItem>
                                <ListItem>
                                    <PropertyName>FileSize</PropertyName>
                                </ListItem>
                               <ListItem>
                                    <PropertyName>CreationTime</PropertyName>
                                </ListItem>
                                <ListItem>
                                    <PropertyName>LastWriteTime</PropertyName>
                                </ListItem>
                                <ListItem>
                                    <PropertyName>LastAccessTime</PropertyName>
                                </ListItem>
                                <ListItem>
                                    <PropertyName>Mode</PropertyName>
                                </ListItem>
                                <ListItem>
                                    <PropertyName>LinkType</PropertyName>
                                </ListItem>
                                <ListItem>
                                    <PropertyName>Target</PropertyName>
                                </ListItem>                        
                                <ListItem>
                                    <PropertyName>VersionInfo</PropertyName>
                                </ListItem>
                            </ListItems>
                        </ListEntry>
                        <ListEntry>
                            <ListItems>
                                <ListItem>
                                    <PropertyName>Name</PropertyName>
                                </ListItem>
                                <ListItem>
                                    <PropertyName>CreationTime</PropertyName>
                                </ListItem>
                                <ListItem>
                                    <PropertyName>LastWriteTime</PropertyName>
                                </ListItem>
                                <ListItem>
                                    <PropertyName>LastAccessTime</PropertyName>
                                </ListItem>
                              <ListItem>
                                <PropertyName>Mode</PropertyName>
                              </ListItem>
                              <ListItem>
                                <PropertyName>LinkType</PropertyName>
                              </ListItem>
                              <ListItem>
                                <PropertyName>Target</PropertyName>
                              </ListItem>
                            </ListItems>
                        </ListEntry>
                    </ListEntries>
                </ListControl>
            </View>
            <View>
                <Name>children</Name>
                <ViewSelectedBy>
                    <SelectionSetName>FileSystemTypes</SelectionSetName>
                </ViewSelectedBy>
                <GroupBy>
                    <PropertyName>PSParentPath</PropertyName> 
                    <CustomControlName>FileSystemTypes-GroupingFormat</CustomControlName>  
                </GroupBy>
                <WideControl>
                    <WideEntries>
                        <WideEntry>
                            <WideItem>
                                <PropertyName>Name</PropertyName>
                            </WideItem>
                        </WideEntry>
                        <WideEntry>
                            <EntrySelectedBy>
                                <TypeName>System.IO.DirectoryInfo</TypeName>
                            </EntrySelectedBy>
                            <WideItem>
                                <PropertyName>Name</PropertyName>
                                <FormatString>[{0}]</FormatString>
                            </WideItem>
                        </WideEntry>
                    </WideEntries>
                </WideControl>
            </View>
            <View>
                <Name>FileSecurityTable</Name>
                <ViewSelectedBy>
                    <TypeName>System.Security.AccessControl.FileSystemSecurity</TypeName>
                </ViewSelectedBy>
                <GroupBy>
                    <PropertyName>PSParentPath</PropertyName> 
                    <CustomControlName>FileSystemTypes-GroupingFormat</CustomControlName>  
                </GroupBy>
                <TableControl>
                    <TableHeaders>
                       <TableColumnHeader>
                          <Label>Path</Label>
                       </TableColumnHeader>
                       <TableColumnHeader />
                       <TableColumnHeader>
                          <Label>Access</Label>
                       </TableColumnHeader>
                    </TableHeaders>
                    <TableRowEntries>
                        <TableRowEntry>
                            <TableColumnItems>
                                <TableColumnItem>
                                    <ScriptBlock>
                                        split-path $_.Path -leaf
                                    </ScriptBlock>
                                </TableColumnItem>
                                <TableColumnItem>
                                <PropertyName>Owner</PropertyName>
                                </TableColumnItem>
                                <TableColumnItem>
                                    <ScriptBlock>
                                        $_.AccessToString
                                    </ScriptBlock>
                                </TableColumnItem>
                            </TableColumnItems>
                        </TableRowEntry>
                    </TableRowEntries>
                </TableControl>
            </View>
           <View>
                <Name>FileSystemStream</Name>
                <ViewSelectedBy>
                    <TypeName>Microsoft.PowerShell.Commands.AlternateStreamData</TypeName>
                </ViewSelectedBy>
                <GroupBy>
                    <PropertyName>Filename</PropertyName> 
                </GroupBy>
                <TableControl>
                    <TableHeaders>
                       <TableColumnHeader>
                          <Width>20</Width>
                          <Alignment>left</Alignment>
                       </TableColumnHeader>
                        <TableColumnHeader>
                            <Width>10</Width>
                            <Alignment>right</Alignment>
                        </TableColumnHeader>
                    </TableHeaders>
                    <TableRowEntries>
                        <TableRowEntry>
                            <TableColumnItems>
                                <TableColumnItem>
                                    <PropertyName>Stream</PropertyName>
                                </TableColumnItem>
                                <TableColumnItem>
                                    <PropertyName>Length</PropertyName>
                                </TableColumnItem>
                            </TableColumnItems>
                        </TableRowEntry>
                    </TableRowEntries>
                </TableControl>
            </View>          
        </ViewDefinitions>
    </Configuration>

    (มัน allmost สำเนาโดยตรงของเดิม$PSHOME\FileFormat.format.ps1xml. ผมเปลี่ยนเพียงLengthเพื่อFileSizeไม่กี่ครั้ง)

  • โหลดรูปแบบใหม่ในเซสชัน PowerShell ของเรา:

    • Update-FormatData -PrependPath $Env:USERPROFILE\Documents\WindowsPowershell\MyFileFormat.format.ps1xml
  • ลองคุณสมบัติใหม่
    • Get-ChildItem

โหลดการเปลี่ยนแปลงใน $PROFILE

  • คัดลอกบรรทัดเหล่านี้ไปยัง$PROFILEเพื่อโหลดการเปลี่ยนแปลงในทุกเซสชั่นใหม่

    # local path to use in this script
    $scriptpath = Split-Path -parent $MyInvocation.MyCommand.Definition
    
    # custom types and formats
    # currently only System.IO.FileInfo is changed
    update-TypeData -PrependPath $scriptpath\MyTypes.ps1xml
    update-FormatData -PrependPath $scriptpath\MyFileFormat.format.ps1xml

0

ฉันใช้โซลูชัน jmreicha กับนามแฝงในโปรไฟล์ $ ของฉัน:

function Get-ChildItem-MegaBytes {
  ls $args | Select-Object Name, @{Name="MegaBytes";Expression={$_.Length / 1MB}}
}

Set-Alias -name megs -val Get-ChildItem-MegaBytes

ตอนนี้ฉันแค่พิมพ์: megs [whatever]

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.