answersLogoWhite

0

Subdirectories are also known as what?

Updated: 8/16/2019
User Avatar

Wiki User

14y ago

Best Answer

a child directory inside a parent directory

User Avatar

Wiki User

16y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

paths

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Subdirectories are also known as what?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Subdirectories are also known as?

FoldersI don't know who submitted that but my Guide to Software course book says that subdirectories are called child directories, or folders. It says nothing about paths. The correct answer is folder.


How can you discover subdirectories of a webpage?

Finding subdirectories on a webpage that is not your own is often times a difficult task. Many subdirectories can be found by checking the source code of a webpage.


How can you list only directories from the current directory?

To list the subdirectories in the current directory: find . -maxdepth 1 -type d To list the subdirectories and all their subdirectories: find . -type d


What switch do you use with xcopy or robocopy to copy subdirectories?

/s


What are DOS directories and subdirectories called in Windows 9x?

Folders.


Directories created under other directories are called what?

subdirectories, child directories, or folders


Which command enables you to copy entire directories including subdirectories from one location to another?

xcopy


Is it true that if you create logical subdirectories you can more easily locate individual files?

Yes, it is true.


What is the command to list all files and subdirectories ina directory?

Under M$ windows, "dir". Under *nix, "ls". "ls -al" will list ALL files and subdirectories (even the hidden ones which start with a '.' in a long format which is easier to read and tells you more information about the files).


DOS command to delete a directory?

1) When in DOS at the C:/, type RD (remove directory)2) hit Enter keyC:/C:/RDEnter


How do you list the number of subdirectories in the current directory?

ls -la |grep "^d" |awk 'END {print "Number of directories: " NR}'


Copy inputfiledat from the project9 directory to the project10 directory in unix?

cp project9/inputfiledat project10 Assuming that you are in a directory that has project9 and project10 as subdirectories.