File Management: Lesson 6
File Management: Lesson 6
File Management: Lesson 6
FILE BASICS
Current versions of Windows support file names up to 255 characters long. In practice, some of the
255 characters are used for the file’s drive letter, folder designation, and extension, so the name you
assign to a file should typically be quite a bit shorter. A file name limitation of 255 characters gives
you the flexibility to use descriptive file names.
To designate a file’s location, you must first specify the device where the file is stored. Each of a PC’s
storage devices is identified by a device letter—a convention that is specific to DOS and Windows.
A disk partition is a section of a hard disk drive that is treated as a separate storage unit. Your
computer’s operating system maintains a list of files called a directory for each storage disk, CD,
DVD, BD, or USB flash drive. The main directory is referred to as the root directory. A root directory
can be subdivided into smaller lists. Each list is called a subdirectory.
When you use Windows, Mac OS, or a Linux graphical file manager, each subdirectory is depicted
as a folder. Folders help you envision your files as if they were stored in a filing cabinet. A computer
file’s location is defined by a file specification (sometimes called a path), which includes the drive
letter, folder(s), file name, and extension.
The term file format refers to the organization and layout of data that is stored in a file. A file header
is a section of data at the beginning of a file that contains information about a file—typically the
date it was created, the date it was last updated, its size, and its file type.
Page | 1
APPLICATION-BASED FILE MANAGEMENT
Some applications also allow you to add tags for a file. A file tag in the context of Windows is a piece
of information that describes a file. Tags are particularly handy for files that contain photos because
you can describe the location, note camera settings, and name people pictured in the shot.
Disc mastering is the process of creating a CD, DVD, or BD by selecting all the files and then copying
them in a single session.
Packet writing is a recording technology that lets you record in multiple sessions. In Windows
terminology, CDs, DVDs, and BDs formatted for packet writing are referred to as Live File System discs.
A process called closing helps make the discs more compatible, but once a disc is closed, no more
data can be added to it.
Page | 2
(HFS+). Ext3fs (third extended file system) is the native file system for Linux. Windows NT, 2000, XP, and
Vista use a file system called NTFS (New Technology File System). Windows 95, 98, and Me use a file
system called FAT32.
To speed up the process of storing and retrieving data, a disk drive usually works with a group of
sectors called a cluster or a block. A file system’s primary task is to maintain a list of clusters and keep
track of which are empty and which hold data. This information is stored in a special index file. If your
computer uses the FAT32 file system, for example, this index file is called the File Allocation Table
(FAT). If your computer uses NTFS, it is called the Master File Table (MFT).
Page | 3