You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a file at this given path. If mode is given, it is combined with the process’ umask value to determine the file mode and access flags. If the file already exists, the function succeeds if exist_ok is true (and its modification time is updated to the current time), otherwise FileExistsError is raised.
According to this documentation, touch() should update the file's modification time to the current time. However, epath.Path.touch() does not match this behaviour.
The text was updated successfully, but these errors were encountered:
The documentation of
pathlib.Path.touch
:According to this documentation,
touch()
should update the file's modification time to the current time. However,epath.Path.touch()
does not match this behaviour.The text was updated successfully, but these errors were encountered: