If you need to list all cmdlets that deal with file system-related tasks, try this:
Get-Command -Noun item*, path
Many of these cmdlets have historic aliases that will help you guess what they are doing:
Get-Alias -Definition *-item*, *-path* | Select-Object Name, Definition