extra info returned from dir command

2 views (last 30 days)
Leonardo Wayne
Leonardo Wayne on 18 Mar 2016
Answered: Walter Roberson on 18 Mar 2016
I have the following command: MyFolderInfo = dir('H:\Motor Testing');
But it returns a struct as shown in the attached image file. I only have one folder called "motor number 1" inside the folder name: Motor Testing, but I get also these "." and ".." with a creation date. What are these dot and dot dot?

Answers (1)

Walter Roberson
Walter Roberson on 18 Mar 2016
For various reasons it turns out to be convenient for each directory to have an entry that refers to itself (named "."), and another entry that refers to its parent (named ".."). These are used for working with relative paths. So if you write
movefile('./abc/def.png', '../images')
then the relative paths ./abc/def.png and ../images are not simply handled by the parser to mean "relative to my current directory" and "relative to the parent of my current directory". They do have those meanings, but they are not handled by the parser: the file system itself has a "." and ".." entry that can be used to say where you will end up, without you needing to know where you already are.

Categories

Find more on File Operations in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!