Last active
May 20, 2026 14:02
-
-
Save nocelab/74e8478daa4ffb975a1caacf7934c2b8 to your computer and use it in GitHub Desktop.
Total Commander WDX of file creation date in Hexadecimal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Script] | |
| ActiveScripts=MinutesAgo|CheckEncoding|Signature|DateCreatedHEX | |
| ; ... | |
| [EpochHEX] | |
| Script=EpochHEX.vbs | |
| content=EpochHEX | |
| extensions=* | |
| FoldersPaths=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ' WinScript Advanced 1.7 (Total Commander) | |
| ' https://totalcmd.net/plugring/WinScriptAdv.html | |
| Dim fs, f, lngUnixTime | |
| Set fs = CreateObject("Scripting.FileSystemObject") | |
| Set f = fs.GetFile(filename) | |
| ' lngUnixTime = DateDiff("s", "01/01/1970 00:00:00", Now) | |
| lngUnixTime = DateDiff("s", "01/01/1970 00:00:00", f.DateCreated) | |
| content = LCase(Hex(lngUnixTime)) | |
| ' content = Hex(lngUnixTime) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment