New directories can be created in the local file system, one level at a time.
Use the make-directory command to create a new directory.
The change-directory command navigates to different directories.
file
— change-directory [url] string
— make-directory[url] string
The following example shows the creation of three levels of directories.
[/file "cf3:\"]
A:admin@node-2# make-directory test1
[/file "cf3:\"]
A:admin@node-2# change-directory test1
[/file "cf3:\test1"]
A:admin@node-2# make-directory test2
[/file "cf3:\test1"]
A:admin@node-2# change-directory test2
[/file "cf3:\test1\test2"]
A:admin@node-2# make-directory test3
[/file "cf3:\test1\test2"]
A:admin@node-2# change-directory test3
[/file "cf3:\test1\test2\test3"]
A:admin@node-2# change-directory ..
[/file "cf3:\test1\test2"]
A:admin@node-2#