answersLogoWhite

0

What does dir showin DOS?

User Avatar

Anonymous

13y ago
Updated: 8/20/2019

folder or directory contents

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

True or false In DOS commands used at the command prompt are case sensitive?

DOS commands are not case sensitive.. dir, Dir, DIr, DIR, dIr, dIR, diR .. all are same..


What is the full form of AP Dir?

in a dos full form of dir


What does DIR in the DIR DOS command stand for?

DIR is used to list the contents of a directory.


Explain All the Internal Command of DOS?

DIR :- DIR is used to display the contents of a drive or directory.


What command of DOS is used to examine the files in a directory?

DIR


How do you search fo a particular file in MS-DOS?

Go to the root directory of the drive (eg c:\), then type: dir <filename> /s For example, to search for the file fred.doc, you would type: dir fred.doc /s Adding /s to the dir makes dos search all the subfolders, so starting in the root directory makes dos search the entire disk.


How do you search fo a particular file in MS DOS?

Go to the root directory of the drive (eg c:\), then type: dir <filename> /s For example, to search for the file fred.doc, you would type: dir fred.doc /s Adding /s to the dir makes dos search all the subfolders, so starting in the root directory makes dos search the entire disk.


What is the dos command to display how much memory is free?

If you mean storage, you can find it with DIR


What DOS command displays all files that begin with the letters WIN?

Dir WIN*.*


Where is the DIR command located?

The DIR or directory command is located in the system32 directory of Windows. It is an executable file that gives DOS access to a user.


How do you list DOS commands available on your computer?

There is no real way to list all dos commands easily. It really depends on the operating system and directory structure. You could try the following in order, but they may be really long lists. C: CD \ DIR /S *.EXE DIR /S *.COM A better answer would need more details about exactly what you are trying to do and what version of DOS (Or windows with DOS) you are using.


How do you run a dos command from a c program?

#include <stdlib.h> int main() { system("dir"); return 0; }