R Directory Navigation Practice
Created by L. Olinger
>
Current Working Directory:
home/user
File System:
Available Commands:
getwd() - Show current working directory
setwd("path") - Change working directory (use absolute or relative paths)
dir() or list.files() - List files in the current directory
help() - Show this help message
clear() - Clear console output
Definitions:
Absolute Path: A path that starts from the root of the file system. For example, home/user/documents is absolute.
Relative Path: A path relative to the current working directory. For example, ../downloads moves up one level and then into the downloads directory.