answersLogoWhite

0

How do you create subdirectories?

Updated: 4/28/2022
User Avatar

Wiki User

11y ago

Best Answer

The misleading name" organic" is a relic of the days when chemical compounds

were divided into two classes, inorganic and organic, depending upon

where they had come from. Inorganic compounds were those obtained from

minerals; organic compounds were those obtained from vegetable or animal

sources, that is, from material produced by living organisms. Indeed, until about

1850 many chemists believed that organic compounds must have their origin in

living organisms, and consequently could never be synthesized from inorganic

material.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you create subdirectories?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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

Yes, it is true.


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


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

true


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

/s


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

Folders.


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.


Subdirectories are also known as what?

a child directory inside a parent directory


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


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).


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

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