extra info returned from dir command

2 次查看(过去 30 天)
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?

回答(1 个)

Walter Roberson
Walter Roberson 2016-3-18
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.

类别

Help CenterFile Exchange 中查找有关 File Operations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by