我正在寻找一种方法来将时间戳保存到ahk中的毫秒级。
FormatTime, stamp, , HH:mm:ss
FileAppend,
(
%stamp%,`n
), C:\%thefilename%.txt
上面的代码只提供了第二个代码。我的活动有时会发生两次。可以啊提供这种级别的细节吗?
答案 0 :(得分:2)
您是否考虑过使用内部%A_TickCount%(近似精度)变量来创建两个时间点之间的经过时间值?
答案 1 :(得分:1)
FileAppend,
(
%A_Hour%:%A_Min%:%A_Sec% (%A_MSec%),`n
), C:\%thefilename%.txt
答案 2 :(得分:0)
类似的东西:
mydocs_pidl = shell.SHGetFolderLocation(0, shellcon.CSIDL_DRIVES, 0, 0)
pidl, display_name, image_list = shell.SHBrowseForFolder(
win32gui.GetDesktopWindow(),
mydocs_pidl,
"Select a file or folder",
shellcon.BIF_BROWSEINCLUDEFILES,
None,
None
)
if (pidl, display_name, image_list) == (None, None, None):
print("No file or directory selected!")
else:
path = str(shell.SHGetPathFromIDList(pidl))
print(path)
应该设法获得毫秒时间。