How are filenames written within REBOL code and data?
Within REBOL code, filenames begin with a percent sign to distinguish them from other words. Here are some examples: %/Volume/Directory/File – subdirectory %/path – root of current volume %//path – root of system %path – relative file (based on the current directory) %../path – up one level from the current directory %. – current directory If the file path starts with a slash, it is the root directory. If it doesn’t, it is a subdirectory of the current path.