Unit-VI discusses files in C programming. A file is a collection of related records stored permanently on secondary storage devices like hard disks. There are several file operations in C - opening a file using fopen(), reading the file using fgetc(), and closing it using fclose(). Different text modes like w, r, a, w+, a+ are used for opening files for write, read, append, write and read, append and read operations respectively. Programs are provided to demonstrate opening, writing, reading and closing files in various modes.