Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 618 Bytes

File metadata and controls

27 lines (17 loc) · 618 Bytes

FileManager

list

All files in the folder are listed.

info

Gives the files name, absolute path to the file, relative path, size, created date, and modified date.

mkdir

Creates a new folder with a given name at a given directory.

rename

Locates the file and renames it.

copy, move, delete

Given a path to the file, copy and move copies the file to another path. In move, however, the original file is deleted. Use Case:

For copy, creates a copy file in another path.

For move, creates a copy file in another path and deletes the original file.

For delete - deletes the file

Quit

Exits program.