- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to check if the file is empty using PowerShell?
To check if the file is empty using PowerShell, we can use the string method called IsNullorWhiteSpace(). This method provides result true if the file is empty or only contains the white spaces otherwise false.
For example, We have a test2.txt text file which has whitespaces.
Example
[String]::IsNullOrWhiteSpace((Get-content C:\Test2.txt))
Output
True
But if you have a file like CSV which contains few headers but the data is empty, in that case, Get-Content will show the wrong output because it will consider headers. For example,
Example
[String]::IsNullOrWhiteSpace((Get-content C:\Temp\NewUsers.csv))
Output
False
Because the file has headers.
PS C:\> Get-Content C:\Temp\NewUsers.csv Name,FirstName,Surname,EMPNumber,Country
In that case, we can use the Import-CSV command inside the brackets.
Example
[String]::IsNullOrWhiteSpace((Import-Csv C:\Temp\NewUsers.csv))
Output
True
- Related Articles
- How to check if PSCustomObject is empty in PowerShell?
- How to check if the Azure resource group is empty or not using PowerShell?
- How to check input file is empty or not using JavaScript/jQuery?
- How to check if an object is empty using JavaScript?
- How to check if the computer is connected to a domain using PowerShell?
- How to check if the USB device is connected to the system using PowerShell?
- How to check if android editText is empty?
- How to check if the date is adjusted by Daylight saving time using PowerShell?
- How to check if String is empty in Java?
- How to check if a C# list is empty?
- How to check if a Laravel collection is empty?
- How to search in the file using PowerShell?
- How to edit the CSV file using PowerShell?
- How to mount the ISO file using PowerShell?
- How to dismount the ISO file using PowerShell?

Advertisements