I want to touch modify date and time of some files, putting current date and 0:00 as time, so I use this command:
touch /d%_date /t0:00 *.*
The problem occurs when there is a DST (daylight saving time) change. When it occurs, the files that I modified before the change shows after the change a wrong time, or 23:00 of the previous day, or 1:00 of the current day, depending of the type of the DST change.
Is there any way to avoid this? Thanks.
touch /d%_date /t0:00 *.*
The problem occurs when there is a DST (daylight saving time) change. When it occurs, the files that I modified before the change shows after the change a wrong time, or 23:00 of the previous day, or 1:00 of the current day, depending of the type of the DST change.
Is there any way to avoid this? Thanks.