Collections:
Other Resources:
Get Directory Properties in Windows PowerShell
How to get directory properties in Windows PowerShell? I want to know how many files are there in a directory.
✍: FYIcenter.com
If you want to get measurement properties of a directory in Windows PowerShell
like total file size,
you can use the "Get-ChildItem ... -Recurse | Measure-Object -Sum Length" pipeline.
Here is good example of getting directory storage size and file count in Windows PowerShell:
PS C:\fyicenter> Get-ChildItem C:\Windows\System32 | Measure-Object -Sum Length Count : 3159 Average : Sum : 1451982183 Maximum : Minimum : Property : Length PS C:\fyicenter> Get-ChildItem C:\Windows\System32 -Recurse | Measure-Object -Sum Length ... You may see some permission errors Count : 19133 Average : Sum : 4005893965 Maximum : Minimum : Property : Length
Note that the second command includes all subdirectories recursively, which gives the true total storage size of 4,005,893,965 bytes (about 4GB), and 19,133 files.
Also note that you need to run the PowerShell as an administrator to have better permission to reach directories and files that require higher level of permissions.
⇒ Get File Content in Windows PowerShell
⇐ Get File Properties in Windows PowerShell
2016-10-22, ∼4004🔥, 0💬
Popular Posts:
What is msntb.dll - DLL file - Windows Live Toolbar for Internet Explorer? DLL msntb.dll is installe...
I am unable to copy data from my external hard-disk (NTFS). When I try to repair it from cmd using c...
Where to find tutorials on using Windows 10? I want to learn how to use Windows 10 more efficiently....
Can I disable Windows service "HTTP SSL" to speedup my computer? Windows service "HTTP SSL" - This s...
What is service "AEADIFilters" and program "AEADISRV.EXE" on Windows Vista? "AEADIFilters" is a syst...