उपयोग
Get-ChildItem -dir #lists only directories
Get-ChildItem -file #lists only files
यदि आप उपनाम पसंद करते हैं, तो उपयोग करें
ls -dir #lists only directories
ls -file #lists only files
या
dir -dir #lists only directories
dir -file #lists only files
उपनिर्देशिकाओं को भी पुनर्जीवित करने के लिए, -r
विकल्प जोड़ें ।
ls -dir -r #lists only directories recursively
ls -file -r #lists only files recursively
PowerShell 4.0, PowerShell 5.0 (Windows 10), PowerShell Core 6.0 (Windows 10, Mac और Linux) और PowerShell 7.0 (Windows 10, Mac और Linux) पर परीक्षण किया गया ।
नोट : जब आप -r
स्विच निर्दिष्ट करते हैं, तो PowerShell Core पर, सीमलिंक का पालन नहीं किया जाता है । सीमलिंक का पालन करने के लिए, -FollowSymlink
स्विच को निर्दिष्ट करें -r
।
नोट 2 : PowerShell अब क्रॉस-प्लेटफॉर्म है, संस्करण 6.0 के बाद से। क्रॉस-प्लेटफ़ॉर्म संस्करण को मूल रूप से पावरशेल कोर कहा जाता था, लेकिन "कोर" शब्द को पावरशेल 7.0+ से हटा दिया गया है।
Get-ChildItem प्रलेखन: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-childitem