
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Display Files and Folders Including Hidden Files in PowerShell
To display files along with hidden files, you need to use –Force parameter.
Command
Get-ChildItem D:\Temp\ -Force
Output
If you see the above output, hiddenfile.xlsx is the hidden file and same can be identified with the mode where –a-h—attribute of the file.
You can also use this parameter with –Recurse or –Depth.
Get-ChildItem D:\Temp\ -Recurse -Force
Advertisements