dir – POFTUT

Python Modules Tutorial With Examples

While learning python programming language we generally write some code or sample applications. But these will generally consist of a few lines of code below 100 lines. In real-world applications the situation is different. We generally write a lot of code, function, helpers, etc. Generally, these applications consist of above 10.000 lines of code. Putting … Read more

How To Output To A File In Powershell With Out-File and Export-Csv Cmdlet?

Out-File is a cmdlet provided by Powershell core libraries. This cmdlet provides features to write created output into a file in the file system. In this tutorial, we will look at different ways to write output into a file with Out-File and Export-CSV cmdlets. Write Into A File One of the basic usage scenario of … Read more

How To Navigate, List Files and Directories In Windows Command Line With Dir?

Windows operating system provides command line tool named MS-DOS. This command line have different tools and capabilities for daily operations. We will look some simple steps about usage like navigation, list files and directories etc. We will mainly use dir command for this tutorial. Help Help information about dir command can be listed like below. $ dir … Read more

Windows Dir Command Tutorial With Examples To List Files and File Information

Dir command is one of the most used Windows commands. Dir is used mainly to list files and directories in Windows operating systems. In this tutorial, we will look at different usage examples of the dir command. List Files and Folders Without providing any option and parameter we will list all files and folders in … Read more