Command Prompt Using DEL, DELTREE, RENAME and MOVE

Slides:



Advertisements
Similar presentations
DOS commands.
Advertisements

A+ Guide to Software, 4e Chapter 6 Windows 9x/Me Commands and Startup Disk.
Working with Files How to create, view, copy, rename and print files.
Disk Operating System (DOS)
Lab6 CPCS361 I.Mona Alshehri. Working with Files and Directories Creating files Create a file with the cat command type the command cat > name_of_file.
DIR : Displays a list of files and subdirectories in a directory. Syntax: DIR [drive:][path][filename] [/A[[:]attributes]] [/B] [/C] [/D] [/L] [/N] /P.
© 2007 The McGraw-Hill Companies, Inc. All rights reserved Working with the Command- Line Interface Chapter 14.
MCT260-Operating Systems I Operating Systems I Routine File Management Part Two.
Micro Op SYS (DOS) Chapters 1, 2, 3, 5, 6, 7. 2 Hardware Four Categories –CPU (Central Processing Unit) –Primary Storage (RAM) –Input/Output Devices Keyboard.
Operating System Fundamentals
Command Prompt Chapter 7 Using ATTRIB, SUBST, XCOPY, DOSKEY, and the MS-DOS Text Editor Richard Goldman ©January 31, 2000.
© 2010 The McGraw-Hill Companies, Inc. All rights reserved Mike Meyers’ CompTIA A+ ® Guide to Managing and Troubleshooting PCs Third Edition Working with.
© 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1 Third Edition Chapter 4 Disk Operating System (DOS) and the Command-Line Interface McGraw-Hill.
By Umesh ks. Dos is a single user operating system. Its support the all operating system wizards Support the disk scheduling. File management Network.
PC Maintenance: Preparing for A+ Certification Chapter 29: Managing Files.
1. 2 Disk Operating System (DOS) Finding DOS and Understanding its Strengths and Weaknesses Installing DOS How the FAT File System Works Working with.
Ch 51 Internal Commands COPY and TYPE. Ch 52 Overview Will review file-naming rules.
1 DOS 2 Directory structure of disks Directory structure of disks Full Path or Full file specification Full Path or Full file specification Creating directories.
Chapter Five Maintaining a Computer Part III: File and Folder Management.
DOS Commands What is a command Types of DOS Commands Basic Terms
Ch 61 Using DEL, REN, MOVE, and RD /S. Ch 62 Overview Will continue to work with internal commands that help manage and manipulate files.
1 THE UNIX FILE SYSTEM By Chokechai Chuensukanant ID COSC 513 Operating System.
Chapter Three Designing The File System. Chapter Objectives Describe the components of the NetWare file system Describe the purpose of each NetWare-created.
CHAPTER 1 UNIX FOR NONPROGRAMMERS By U ğ ur Halıcı.
Understanding the Boot Process and Command Line
Ch 21 Command Syntax Using the DIR Command with Parameters and Wildcards.
®® Microsoft Windows 7 for Power Users Tutorial 13 Using the Command-Line Environment.
Ch 41 Program Files, Data Files, and Subdirectories.
CPSC Pascal Brent M. Dingle Texas A&M University Chapter 1.
BY PREETHI DOS INTERNAL COMMANDS. INTERNAL COMMANDS  DOS commands that are present in the COMMAND.COM file and are automatically loaded into RAM when.
BIF713 Basic Unix/Linux Commands Getting Help with Commands.
Common DOS Commands Additional information. Important DOS Concepts Common DOS Commands  Why format a disk?  Partitioning and Formatting disks  Structure.
Basic MS-DOS. History MS-DOS 1.0 was released in August 1981, and was updated until April 1994 when it was replaced by Windows 95 All versions of windows.
DISK OPERATING System MS-DOS. MS-DOS Microsoft Disk Operating System (MS-DOS) is a single user, single tasking operating system. DOS is a command-line,
1.  Microsoft DOS (Disk Operating System) use a command line user interface.command line  A command line user interface means that the user is required.
1 Floppy Drive Formatting ©Richard Goldman February, 2001.
Agenda Basic Unix Commands (Chapters 2 & 3) Miscellaneous Commands: whereis, which, whoami, finger, passwd, cal, date Working with Files: cat, more, less.
L Instructor: Šimek Václav, Straka Martin ITP – PC laboratory.
Operating System Fundamentals 1. Components of an OS 2. Functions of an OS 3. Types of OS 4. Command-line tools.
File and Folder CLI Commands 12/24/ Agenda Overview of OS functions and the SHELL Internal v External Commands Command History Making & Modifying.
The Command Line Yep, you need to know this. The Basics Start with the Prompt, what the computer tells you when ready for a command You type a command.
Guide to Parallel Operating Systems with Windows 7 and Linux Chapter 6 Directory Commands.
Basic Unix Commands. Listing files and directories ● ls:command is used to list the files and ● directories in present working directory ● ls command.
Operating System. What is Operating System OS is system software, which may be viewed as collection of software consisting of procedures for operating.
IST 222 Day 6. DOS Naming Conventions A filename contains up to 8 characters, a separating period, and a file extension of up to three characters This.
MS-DOS is an acronym for MicroSoft Disk Operating System It is a CUI based operating system. It provides user with a command prompt (generally called.
Systems Administration (Windows) BIT3111 – Lecture 5 (Introduction to Windows OS)
Mostly MS Dos with some UNIX/LINUX
Commands Basic syntax of shell commands UNIX or shell commands have a basic structure command -options target command comes first (such as cd or ls) any.
Introduction to Operating Systems
INTERNAL COMMANDS CLS(Clear Screen):-
The Command Prompt Commands are the way to “do things” in Unix
Command Prompt Using Copy, Type, and Wildcards
Command Syntax Chapter 2 Using the DIR Command with
Chapter 6 Windows 9x/Me Commands and Startup Disk
Working with the Command-Line Interfaced
Operating Systems and Using Linux
Cmdlets “Command-lets”
Operating System Fundamentals
The Linux Command Line Chapter 4
Disk Structure Analysis
Module 6 Working with Files and Directories
Chapter 6 Using DEL, REN, MOVE, and RD /S Ch 6.
What is Unix? A multi-user networked operating system
OPERATING SYSTEM B-TECH III YEAR I SEM BRANCH :ECE
Lab 2: Terminal Basics.
1.3 Given a scenario, apply appropriate Microsoft command line tools
January 26th, 2004 Class Meeting 2
The Linux Command Line Chapter 4
Presentation transcript:

Command Prompt Using DEL, DELTREE, RENAME and MOVE ©Richard Goldman January 31, 2000

DEL Command (Delete) Internal command that allows you to delete files. First character of name in the directory table is overwritten with a special character. Each cluster in the FAT is set to zero. Syntax DEL [drive:] [path] filename [/P] /P = Prompt before deleting Wildcards can be used Some utility programs may be able to undelete files if they haven’t been overwritten.

To Remove Directories RD (Remove Directory) RD /S DELTREE Directory must be empty first. RD /S Deletes all files and subdirectories at once. Available in Windows 2000 and later. DELTREE Not available in Windows 2000 and later.

REN or RENAME Command Renames files or Subdirectories Can use wildcards Can not move a file or subdirectory with a REN command. (Use the MOVE command) Syntax: REN [drive:] [directoryname1 | filename1] [directoryname2 | filename2] No parameters

Move Command Move files Moves Subdirectories along with their contents Can use wildcards Can rename single a file/subdirectory on a single file/subdirectory move. Can not rename on a global move (using wildcards) Syntax: MOVE source destination

End