File Management

studied byStudied by 0 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 9

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

10 Terms

1

File Manager Functions

  • keep track of where each file is stored

  • implement a policy that’ll

    • determine where + how files are stored

    • efficiently use available storage space

    • provide efficient file access

  • allocate each file when a user has been cleared for access to it, then record its use

  • File deallocation

New cards
2

Types of Files

  • Program files

  • Data files

New cards
3

File Manager Interactions

  • embedded in program

    • OPEN, CLOSE, READ, WRITE, MODIFY

  • submitted interactively

    • CREATE, DELETE, RENAME, COPY

New cards
4

Volume Configuration

  • each secondary storage is considered a volume

  • each volume is given a name, and the File manager manages it(writes descriptive info)

  • single directory per volume

New cards
5

Volume Configuration Disadvantages

  • Long search time for individual file

  • Directory space filled before disk storage space filled

  • Users cannot create subdirectories

  • Users cannot safeguard their files

  • Each program needs unique name

    • Even those serving many users


New cards
6

MFD

  • stored immediately after volume descriptor

  • lists:

    • names & characteristics of every file in volume

    • any subdirectories

    • the remainder of the volume

New cards
7

File Descriptor

  • Filename: ASCII code

  • File type: organization and usage

    • System dependent

  • File size: for convenience

  • File location

    • First physical block identification

  • Date and time of creation

  • Owner

  • Protection information: access restrictions

  • Record size: fixed size, maximum size


New cards
8

File Naming Conventions

  • Relative filename and extension(.png)

  • Operating System Specifics

    • Windows

      • Drive label and directory name, relative name, and
        extension

    • Network w/ Open VMS Alpha

      • Node, volume or storage device, directory, subdirectory, relative name and extension, file version number

    • UNIX/Linux

      • Forward slash (root), first subdirectory, sub-
        subdirectory, file’s relative name

New cards
9

Absolute File Names(Complete filename)

includes all path info

New cards
10

Relative File Names

  • Name without path information

  • Appears in directory listings, folders

  • Provides filename differentiation within directory

  • Varies in length

    • One to many characters

    • Operating system specific

New cards
robot