Windows和Linux修改文件时间方法(修改文件时间戳、修改时间戳)(Win:creationtime、lastaccesstime、lastwritetime)(Linux:touch命令)
在Windows和Linux中,可以使用命令行工具来修改文件的时间戳。
Windows:
使用 copy
命令来修改文件的创建时间(birth time)、修改时间(modification time)和访问时间(access time)。
copy /b filename.ext +,,
这将重置文件的时间戳到当前时间。
若要设置特定的时间,可以使用 fsutil
命令:
fsutil file setbasicinfo filename.ext +creation:MM/DD/YYYY:HH:MM:SS +modification:MM/DD/YYYY:HH:MM:SS
Linux:
使用 touch
命令来修改文件时间戳。
touch -c -t YYYYMMDDHHMM filename.ext
或者使用 stat
命令来设置特定的时间:
stat filename.ext
然后使用 touch
命令修改:
touch -d "YYYY-MM-DD HH:MM:SS" filename.ext
请根据需要替换 MM/DD/YYYY:HH:MM:SS
和 YYYYMMDDHHMM
为实际的日期和时间。
评论已关闭