Copy, Move and Delete files with PowerShell
In this article, let me show you how you can use PowerShell to copy, move and delete files. Before we go through these commands, let me show you how to navigate between different directories/folders. How to change the directory (folder) in Command Prompt (CMD) CD (Change Directory): This command enables you to change the current directory. When you need to go one folder up, use the "cd.." command. Let’s assume that you want to go back to the Windows folder. Type “cd..” and press Enter on your keyboard. cd takes you to the top of the directory tree when you pass " \ " after it. In this case, to the “C:” drive. If you need to go to a specific folder from this drive run the command "CD Folder". for example, When you need to access the cstutorials folder located in "C:" type "cd cstutorials" as shown below, and then press Enter on your keyboard. CD cmdlet is alias for set-location. you can use set-location also. How to create a new directo...