Unix 中的递归时间戳更新
当我创建一个目录 d1 并在 5 秒后创建 d1/d2 时,d1 时间戳会更新为 d2 的时间戳。 5秒后,当我创建d1/d2/d3时,只有d2时间戳更新为d3,而不是d1时间戳。
基本上,我的要求是不仅父文件夹,而且从根到父文件夹的所有文件夹都必须随父文件夹的时间更新。
有没有办法将 d1 的时间戳更新为 d3 的时间戳?
请澄清。
When I create a directory say d1 and after 5 seconds d1/d2, then d1 timestamp gets updated to that of d2. After 5 seconds, when I create d1/d2/d3, only d2 timestamp gets updated to d3 but not that of d1.
Basically, my requirement is that not only the parent folder but all the folders from root to parent folder must get updated with the time of the parent folder.
Is there any way to update the timestamp of d1 with that of d3?
Please clarify.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查找当前目录中的所有目录并将时间戳更新为当前时间...
Finds all directories in the current directory and updates the timestamp to the current time...
这会找到pwd下的所有目录,并将每个目录的修改时间修改为d1/d2/d3目录的修改时间。假设您位于包含目录 d1 的目录中。
This will find all the directories under pwd, and will modify the modification time of each to the modification time of d1/d2/d3 directory. It is assumed that you are in the directory that has directory d1.
这将仅设置添加文件路径上的目录的修改时间。
所以在这棵树中
只有
d1
和d1/d2
会受到影响。This will set the modification time of only the directories that are on the path to the added file.
So in this tree
Only
d1
andd1/d2
will be affected.