vote up 0 vote down star

When I update a file inside a folder that exist inside another folder, the immediate parent folder's timestamp is updated but not the two levels up parent folder.

For example, if the structure was... /directory/subdirectory/test.pdf

If I were to overwrite the test.pdf file, the timestamp for test.pdf is updated; "subdirectory" folder's timestamp is updated.. but NOT "directory".

Shouldn't the folder "directory" also be updated since its content was updated?

flag

closed as not programming related by Marc Gravell Oct 14 at 12:20

1 Answer

vote up 2 vote down

When you add or remove a file in subdirectory, you are modifying that directory. (Think of "subdirectory" as a data structure, you have to "change the pointers" on the data structure to add/remove files.)

But those changes do not have any impact on directory, so it's timestamp doesn't change.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.