in reply to Unlink+Open: File creation timestamp problem
https://blogs.msdn.microsoft.com/oldnewthing/20050715-14/?p=34923/ "One of the file system features you may find yourself surprised by is tunneling, wherein the creation timestamp and short/long names of a file are taken from a file that existed in the directory previously"
Re: How to change file creation date?
use Win32API::File::Time qw{:win}; my ($fwatime, $fwmtime, $fwctime) = GetFileTime ($fromfn); SetFileTime ($tofn, $fwatime, $fwmtime, $fwctime);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Unlink+Open: File creation timestamp problem
by NetWallah (Canon) on Feb 23, 2017 at 03:49 UTC | |
|
Re^2: Unlink+Open: File creation timestamp problem
by Rantanplan (Novice) on Feb 24, 2017 at 09:49 UTC |