answersLogoWhite

0

What kind of file does not appear in the directory list?

Updated: 8/18/2019
User Avatar

Wiki User

13y ago

Best Answer

Folder or files which start with . will not not be appear in directory list

Amit Gupta

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What kind of file does not appear in the directory list?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a hidden file?

A file that does not appear in the directory list.


Which attribute is used to hide a file so that it does not appear in the directory list?

Read-Only


What is a hidden file Name a Windows file that is hidden.?

A hidden file is a file file that does not appear in the directory list. A 9x/ME file like this would be boot.ini. A hidden file is a file that is not displayed in a directory list. Whether to hide or display a file is one of the file's attributes kept by the OS. A 9x/Me file like this would be boot.ini.


What is a hidden file Name a windows 9xMe file that is hidden?

A hidden file is a file file that does not appear in the directory list. A 9x/ME file like this would be boot.ini. A hidden file is a file that is not displayed in a directory list. Whether to hide or display a file is one of the file's attributes kept by the OS. A 9x/Me file like this would be boot.ini.


What command can be used to view a list of directory hierarchies, including the file system type?

The df utility displays a list of the directory hierarchies available on the file system. NFS is the file system type.


What is a multi-level directory system?

A directory is a logical grouping of files. By maintaining several directories the file manager can permit the same file name to be used in separate directories to refer to independent copies of the same file or completely different files. The contents of a directory - a list of file names and their associated information - are stored in a special file called a directory file which is assigned a file name which distinguishes it from non-directory files. By allowing directory file names to appear alongside non-directory file names in a directory, the file manager is able to link separate directories hierarchically as shown in figure 1. The directory at the top of the structure is given the special name, ROOT because the hierarchical structure resembles an upside-down tree. The directories below the root directory are known as subdirectories. by earnie


What is the Directory?

A directory is commonly called a "folder" - it is a file that has a list that redirects the computer to the actual location of the files that are in that list. It's used more of as a organizational tool.


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 is just below the title bar that shows the location of the files that appear in the file list?

The address bar is located just below the title bar and shows the location of the files that appear in the file list.


What is located just below the title bar and shows the location of the files that appear in the file list?

The address bar is located just below the title bar and shows the location of the files that appear in the file list.


What is the Linux command used to list the contents of a directory?

ls will list the contents of a directory.


How do you get all the files from the directory in PHP?

To list all the files in a directory you would use the following: $handle = opendir('/path/to/folder'); while(($file = readdir($handle)) !== false){ // do things with files // you will want to filter out things like ., .., and .htaccess echo $file; } Also, to return a list of all the files in a directory, especially with wildcards, use something such as: $file_array = glob("*"); $files = implode("\n", $file_array); echo $files; will give you a list of all the files directly.