timestamp not working in 24.20.0020

Things you’d like to miss in the future...
Post Reply
1024mb
Posts: 205
Joined: 14 Dec 2018 23:26

timestamp not working in 24.20.0020

Post by 1024mb »

Title. It does nothing.

Tested in a fresh instance and could reproduce. Tested in 24.20.0012 and timestamp does works.

jupe
Posts: 2794
Joined: 20 Oct 2017 21:14
Location: Win10 22H2 120dpi

Re: timestamp not working in 24.20.0020

Post by jupe »

Can't repro.

1024mb
Posts: 205
Joined: 14 Dec 2018 23:26

Re: timestamp not working in 24.20.0020

Post by 1024mb »

Interesting. Can you please try this script, I've been able to reproduce this even by launching a fresh portable instance of XYplorer.

Code: Select all

$allitems = "<allitems <crlf>>";
 $listitems = "";
 foreach $path, "$allitems", "<crlf>", "e"{
   $attrs = property("#Attr", "$path");
   if(strpos("$attrs", "D") != "-1"){
      $listitems .= folderreport("items", "r", "$path", "r");
      $listitems .= "$path<crlf>";
   }else{
      $listitems .= "$path<crlf>";
   }
 }
 $listitems = regexreplace("$listitems", "\r\n$", "");
 timestamp 'ca', '*', $listitems, 'm';

highend
Posts: 13317
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: timestamp not working in 24.20.0020

Post by highend »

timestamp "ca", '*', $listitems, "m";
One of my scripts helped you out? Please donate via Paypal

admin
Site Admin
Posts: 60567
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: timestamp not working in 24.20.0020

Post by admin »

Fixed in next beta.

Post Reply