Przejdลบ do treล›ci

๐Ÿ“ Filesystem & Paths

Understanding drives, paths and files.


๐Ÿงฉ Drives

  • C:\ โ€” system drive
  • D:\, E:\ โ€” additional drives

List drives:

1
Get-PSDrive

๐Ÿ”ง Basic Operations

1
2
3
4
New-Item -ItemType Directory -Path .\Folder
New-Item -ItemType File -Path .\file.txt
Remove-Item .\file.txt
Remove-Item .\Folder -Recurse

๐Ÿ“‚ Paths

  • C:\Users\<User> โ€” user profile
  • C:\Program Files โ€” 64โ€‘bit apps
  • C:\Program Files (x86) โ€” 32โ€‘bit apps