gpt4 book ai didi

python - mac 上修改/创建/访问时间不一致

转载 作者:太空狗 更新时间:2023-10-30 00:15:36 24 4
gpt4 key购买 nike

我在使用 os.utime 正确设置 mac 上的修改时间时遇到问题(Mac OS X 10.6.2,从 /usr/bin/运行 Python 2.6.1 python )。它与 touch 实用程序不一致,并且与 Finder 的“获取信息”窗口中显示的属性不一致。

考虑以下命令序列。纯文本中的“创建”和“修改”时间指的是查找器中“获取信息”窗口中显示的属性。提醒一下,os.utime接受参数 (filename, (atime, mtime))

>>> import os
>>> open('tempfile','w').close()

'created' 和 'modified' 都是当前时间。

>>> os.utime('tempfile', (1000000000, 1500000000) )

'created'为当前时间,'modified'为2017年7月13日。

>>> os.utime('tempfile', (1000000000, 1000000000) )

“创建”和“修改”均为 2001 年 9 月 8 日。

>>> os.path.getmtime('tempfile')
1000000000.0
>>> os.path.getctime('tempfile')
1269021939.0
>>> os.path.getatime('tempfile')
1269021951.0

...但是 os.path.get?timeos.stat 没有反射(reflect)出来。

>>> os.utime('tempfile', (1500000000, 1000000000) )

“创建”和“修改”仍然都是 2001 年 9 月 8 日。

>>> os.utime('tempfile', (1500000000, 1500000000) )

“创建”是 2001 年 9 月 8 日,“修改”是 2017 年 7 月 13 日。

我不确定这是 Python 问题还是 Mac 统计问题。当我退出 Python shell 并运行时

touch -a -t 200011221234 tempfile

修改和创建时间都没有像预期的那样改变。然后我跑

touch -m -t 200011221234 tempfile

并且“创建”和“修改”时间都已更改。

有人知道发生了什么事吗?如何在 Mac 上一致地更改修改和创建时间? (是的,我知道在 Unixy 系统上没有“创建时间”。)


运行 Chris Johnsen 脚本的结果:

seth@local:~$ /usr/bin/python timetest.py tempfile 5
initial:
(1269631281.0, 1269631281.0, 1269631281.0, 1269631281, 1269631281, 1269631281)

test: (1000000000, 1000000000)
(1000000000.0, 1000000000.0, 1269631281.0, 1000000000, 1000000000, 1269631281)
(1269631281.0, 1000000000.0, 1269631281.0, 1269631281, 1000000000, 1269631281)

test: (1000000000, 1500000000)
(1000000000.0, 1500000000.0, 1269631286.0, 1000000000, 1500000000, 1269631286)
(1269631286.0, 1500000000.0, 1269631286.0, 1269631286, 1500000000, 1269631286)

test: (1500000000, 1000000000)
(1500000000.0, 1000000000.0, 1269631291.0, 1500000000, 1000000000, 1269631291)
(1269631291.0, 1000000000.0, 1269631291.0, 1269631291, 1000000000, 1269631291)

test: (1500000000, 1500000000)
(1500000000.0, 1500000000.0, 1269631296.0, 1500000000, 1500000000, 1269631296)
(1269631296.0, 1500000000.0, 1269631296.0, 1269631296, 1500000000, 1269631296)

练习结束时,查找器中可见的“创建”日期为 9/8/01,“修改”日期为 7/13/17。 (访问日期,大概是因为你建议的聚光灯,正如我所读到的,大致是“现在”。)在取景器中可见的创建和修改日期仍然没有意义。

最佳答案

POSIX atimemtimectime

如果您包含一个完整的脚本及其实际和预期的输出而不是 REPL 片段,这可能会有所帮助。

import sys, os, stat, time

def get_times(p):
s = os.stat(p)
return (
os.path.getatime(p),
os.path.getmtime(p),
os.path.getctime(p),
s[stat.ST_ATIME],
s[stat.ST_MTIME],
s[stat.ST_CTIME],
)

def main(p, delay=1):
delay = float(delay)
(a,b) = (1000000000, 1500000000)

open(p,'w').close()

print 'initial:'
print get_times(p)

for t in [ (a,a), (a,b), (b,a), (b,b) ]:
print
print 'test:', t
os.utime(p,t)
print get_times(p)
time.sleep(delay)
print get_times(p)

main(*sys.argv[1:])

我在我的 10.4 系统上用 cd "$HOME" && python test.py tempfile 5 得到了这个(系统默认的 Python 2.3.6 和 MacPorts Python 2.6.4 都给出相同的结果(当然省略了初始时间和ctime)):

% python /tmp/test.py tempfile 5
initial:
(1000000000.0, 1000000000.0, 1269629881.0, 1000000000, 1000000000, 1269629881)

test: (1000000000, 1000000000)
(1000000000.0, 1000000000.0, 1269629881.0, 1000000000, 1000000000, 1269629881)
(1000000000.0, 1000000000.0, 1269629881.0, 1000000000, 1000000000, 1269629881)

test: (1000000000, 1500000000)
(1000000000.0, 1500000000.0, 1269629886.0, 1000000000, 1500000000, 1269629886)
(1000000000.0, 1500000000.0, 1269629886.0, 1000000000, 1500000000, 1269629886)

test: (1500000000, 1000000000)
(1500000000.0, 1000000000.0, 1269629891.0, 1500000000, 1000000000, 1269629891)
(1500000000.0, 1000000000.0, 1269629891.0, 1500000000, 1000000000, 1269629891)

test: (1500000000, 1500000000)
(1500000000.0, 1500000000.0, 1269629896.0, 1500000000, 1500000000, 1269629896)
(1500000000.0, 1500000000.0, 1269629896.0, 1500000000, 1500000000, 1269629896)

这似乎是合理的。我想知道你得到了什么。

我听说 Spotlight 有时会因为重新索引更改的文件而主动重置 atime。我不希望它重新索引只经过 utime()/utimes() 的文件,但我认为这是可能的。为了消除 Spotlight 可能带来的复杂性,请使用位于 Spotlight 未索引的位置(例如/tmp/testfile)中的文件。

Finder 中创建的日期

(在 Finder 的“获取信息”窗口中显示为“已创建:”)

如果您安装了开发者工具,您可以使用/Developer/Tools/GetFileInfo查看 HFS 创建日期。我在每个 print get_times(p) 之后添加了以下行行:

sys.stdout.flush()
os.system('/Developer/Tools/GetFileInfo ' + p)

我还更改了迭代以匹配您的初始描述 ( [ (a,b), (a,a), (b,a), (b,b) ])。

现在的结果是这样的:

% rm /tmp/tempfile; python /tmp/test.py /tmp/tempfile 1
initial:
(1269636574.0, 1269636574.0, 1269636574.0, 1269636574, 1269636574, 1269636574)
file: "/private/tmp/tempfile"
type: ""
creator: ""
attributes: avbstclinmedz
created: 03/26/2010 15:49:34
modified: 03/26/2010 15:49:34

test: (1000000000, 1500000000)
(1000000000.0, 1500000000.0, 1269636574.0, 1000000000, 1500000000, 1269636574)
file: "/private/tmp/tempfile"
type: ""
creator: ""
attributes: avbstclinmedz
created: 03/26/2010 15:49:34
modified: 07/13/2017 21:40:00
(1000000000.0, 1500000000.0, 1269636574.0, 1000000000, 1500000000, 1269636574)
file: "/private/tmp/tempfile"
type: ""
creator: ""
attributes: avbstclinmedz
created: 03/26/2010 15:49:34
modified: 07/13/2017 21:40:00

test: (1000000000, 1000000000)
(1000000000.0, 1000000000.0, 1269636576.0, 1000000000, 1000000000, 1269636576)
file: "/private/tmp/tempfile"
type: ""
creator: ""
attributes: avbstclinmedz
created: 09/08/2001 20:46:40
modified: 09/08/2001 20:46:40
(1000000000.0, 1000000000.0, 1269636576.0, 1000000000, 1000000000, 1269636576)
file: "/private/tmp/tempfile"
type: ""
creator: ""
attributes: avbstclinmedz
created: 09/08/2001 20:46:40
modified: 09/08/2001 20:46:40

test: (1500000000, 1000000000)
(1500000000.0, 1000000000.0, 1269636577.0, 1500000000, 1000000000, 1269636577)
file: "/private/tmp/tempfile"
type: ""
creator: ""
attributes: avbstclinmedz
created: 09/08/2001 20:46:40
modified: 09/08/2001 20:46:40
(1500000000.0, 1000000000.0, 1269636577.0, 1500000000, 1000000000, 1269636577)
file: "/private/tmp/tempfile"
type: ""
creator: ""
attributes: avbstclinmedz
created: 09/08/2001 20:46:40
modified: 09/08/2001 20:46:40

test: (1500000000, 1500000000)
(1500000000.0, 1500000000.0, 1269636578.0, 1500000000, 1500000000, 1269636578)
file: "/private/tmp/tempfile"
type: ""
creator: ""
attributes: avbstclinmedz
created: 09/08/2001 20:46:40
modified: 07/13/2017 21:40:00
(1500000000.0, 1500000000.0, 1269636578.0, 1500000000, 1500000000, 1269636578)
file: "/private/tmp/tempfile"
type: ""
creator: ""
attributes: avbstclinmedz
created: 09/08/2001 20:46:40
modified: 07/13/2017 21:40:00

这似乎与您在 Finder 的“获取信息”窗口中观察到的结果一致。我的解释(由其他实验证实)是 HFS creationDate 由 utime 更新,但它只会向后(从不向前)。如果您想将 HFS creationDate 更新为更新的值,那么您可能必须使用特定于 Mac 的 API 来执行此操作。

另一个注意事项:您可能需要稍微切换窗 Eloquent 能让获取信息窗口更新。在我的系统上,它的显示不会自动更新,除非我将窗口切换到“获取信息”窗口或从“获取信息”窗口切换。

关于python - mac 上修改/创建/访问时间不一致,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2479690/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com