answersLogoWhite

0


Best Answer

First you eat a bottle of mustard. then you get outside and bury a peppermint. in 3-5 days you dig up this peppermint and eat it

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What command do you use to list all files in a directory that have an exe file extension?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the command that will delete all files with TXT extension in your current directory but will pause at each file and ask if you want to delete the file or leave it alone?

You can run this in a .bat file del "C:\Text Files\*.txt"


What does the question mark mean in a command line?

Its a wildcard for one character. (Example): if you want to find files in the directory that start with A & have a three letter file extension, you would use: a*.???


What is the unix command to search the files extension 'txt' in their names in a directory and all its subdirectries?

Unix really doesn't use file extensions, but if you want to look for them recursively, then use: ls -R *txt


What is the pwd command in Linux?

The pwd command prints the working directory. The working directory is the directory you are "in", where operations on files that don't have an absolute path specified will be performed. For instance, if my working directory is /home/username/stuff, then the command echo "test" > test.txt would place the file test.txt in that directory.


What the asterix is for In ms dos?

"Asterix is not a command.. Its a comic character.." Actually asterix is also a so called wildcard character in MS-DOS. It replaces a whole series of characters related to file name, extension or both. For example, if you want to delete all files named "list" from a current directory (no matter what type those files are) use the following command: del list.* In case you want to delete all files with .txt extension from the current directory, use: del *.txt Or if you want to delete all files in the directory no matter what type they are or what they were called, use: del *


What is the command to list only one file?

Assuming you are looking for a specific file in a location, it's as simple as ls <name of file.> assuming you are in the directory you expect it to be in.


What extensions can be run from command prompt?

The shell will only execute files that end in a file extension of .exe, .bat, or .com


In unix how will you find extension of file using commands?

Unix files do not rely on extensions, therefore there is no command to find them.


How do you delete 0 byte files using DOS?

The command for deleting a file in DOS is DEL. If the file you are trying to delete is in the current directory, type DEL followed by the full filename. E.g. del file001.txt If there are multiple files, the wildcard * can be used. del file*.txt will delete all the text files that start with 'file' del file*.* will delete all the files that start with file. del *.txt will delete all the text files. del *.* will delete all the files in the current directory. It is possible to delete files in another directory by typing the full path and filename del c:\folder01\*.* will delete all the files in the directory c:\folder01\ DEL will not affect hidden files, but careless use of this command could damage your operating system so use with care.


What are hidden files and how can they is displayed in UNIX?

A hidden file is any file or directory that starts with the character '.' (period). It is designed to eliminate common files from showing with the 'ls' command. Using the -a option for 'ls' will show all files.


What is the command to delete all files in the A data folder that begin with the letter A and have the txt file extension?

Depends on the operating system...In Windows (with a command prompt open and the current directory is this data folder): del a*.txtThe del command is used to delete files and takes an argument containing the name of the file. Wildcards, such as * (denotes "any number of characters"), are used to take action on any items in the folder that meet the requirements. You can think of a*.txt as meaning "starts with an a followed by any number of characters, and ending with a period and the extension 'txt'."


Which command is used to see the content of file?

You can get a list of all the files in the current directory with the "ls -a" command.