Search found 1122 matches

by yusef88
05 Feb 2024 17:17
Forum: Bug Reports
Topic: virtual folder scans subfolder of network!
Replies: 8
Views: 349

Re: virtual folder scans subfolder of network!

admin wrote: 05 Feb 2024 17:13 1. So the original problem has gone away?
yes, thank you
by yusef88
05 Feb 2024 16:38
Forum: Bug Reports
Topic: virtual folder scans subfolder of network!
Replies: 8
Views: 349

Re: virtual folder scans subfolder of network!

Something else: cycle tabs between a virtual folder e.g.vi:<xy> and a paper folder make PF contents disappear
by yusef88
05 Feb 2024 16:26
Forum: Bug Reports
Topic: virtual folder scans subfolder of network!
Replies: 8
Views: 349

Re: virtual folder scans subfolder of network!

no delay (hang) noticed after startup
Startup Time: 13,801 ms at 05/02/2024 05:23:16

Startup to a normal tab
Startup Time: 917 ms at 05/02/2024 05:25:00
by yusef88
05 Feb 2024 15:16
Forum: Bug Reports
Topic: virtual folder scans subfolder of network!
Replies: 8
Views: 349

Re: virtual folder scans subfolder of network!

admin wrote: 05 Feb 2024 14:56 Do you have some special path that's called "Network"?
No, the content of VF is from one location "Downloads\Video"
by yusef88
05 Feb 2024 12:56
Forum: Bug Reports
Topic: virtual folder scans subfolder of network!
Replies: 8
Views: 349

virtual folder scans subfolder of network!

I created virtual folder with huge list 2500 items by this code $s = "<selitems <crlf>>"; goto "vi:$s"; I understand that the XY will take some time to prepare this virtual folder next time you launch XY but why XY scans subfolder of network? I think this scan is responsible for ...
by yusef88
03 Feb 2024 11:31
Forum: Script Exchange
Topic: Build string of variables
Replies: 8
Views: 1838

Re: Build string of variables

this seems simple and easy thank you for explaining "_Initialize" Global $ffmpeg = "D:\master\ffmpeg-n6.0-win32-shared\bin\ffmpeg.exe"; global $file1 = gettoken(<selitems |>, 1, "|"); global $file2 = gettoken(<selitems |>, 2, "|"); "combine" Global $...
by yusef88
02 Feb 2024 16:22
Forum: Script Exchange
Topic: Build string of variables
Replies: 8
Views: 1838

Re: Build string of variables

Actually what I need are just two variable values. I was asking out of curiosity if such thing is possible i can modify the script to meet my needs. don't bother thanks "_Initialize" Global $ffmpeg = "D:\master\ffmpeg-n6.0-win32-shared\bin\ffmpeg.exe"; if ( <drop> ) { $files = &q...
by yusef88
02 Feb 2024 15:31
Forum: Script Exchange
Topic: Build string of variables
Replies: 8
Views: 1838

Re: Build string of variables

$folders = "C:\Temp|D:\Temp"; while ($i++ < gettoken($folders, "count", "|")) { // Two time loop // '$folder' is the new first part of the variable here, not a reference to an existing variable! // This first part must be SINGLE quoted, otherwise it could reference an ...
by yusef88
25 Jan 2024 16:35
Forum: Tips & Tricks, Questions & Answers
Topic: find folder containing large number of text files
Replies: 2
Views: 277

Re: find folder containing large number of text files

highend wrote: 25 Jan 2024 15:40 Sure, via scripting (quicksearch, listfolder on every folder in the loop, sort the result at the end => paperfolder)
thanks for the steps you've suggested
by yusef88
25 Jan 2024 15:23
Forum: Tips & Tricks, Questions & Answers
Topic: find folder containing large number of text files
Replies: 2
Views: 277

find folder containing large number of text files

Is it possible to find the folder that has the greatest number of txt files?
by yusef88
17 Oct 2023 14:26
Forum: Tips & Tricks, Questions & Answers
Topic: add "Open in XYplorer" to Windows Explorer
Replies: 8
Views: 448

Re: add "Open in XYplorer" to Windows Explorer

Windows Registry Editor Version 5.00 ;file menu [HKEY_CLASSES_ROOT\*\shell\XYplorer] [HKEY_CLASSES_ROOT\*\shell\XYplorer\command] @="\"XYplorer.exe\" /select=\"%1\"" ;folder menu [HKEY_CLASSES_ROOT\Directory\Shell\XYplorer] [HKEY_CLASSES_ROOT\Directory\Shell\XYplorer\C...
by yusef88
27 Jun 2023 02:28
Forum: Script Exchange
Topic: send multiple files as arguments (‪Nilesoft Shell)
Replies: 5
Views: 1602

Re: send multiple files as arguments

Hello everyone
if anyone uses Nilesoft Shell, and can help write the right syntax

Code: Select all

item(type='file' mode=multiple title='XY' image cmd='XYplorer.exe' args='/user=\"@sel(false, "|")')
https://nilesoft.org/docs/functions/sel
to echo get("CmdLineUser"); in XYplorer
by yusef88
20 Jun 2023 01:12
Forum: Multilingual Support
Topic: Arabic
Replies: 7
Views: 7912

Re: Arabic

This translation needs to use some words that are familiar context-appropriate.
e.g. Overwrite?|--|الإفراط في الكتابة should be Overwrite?|--|استبدال
by yusef88
07 Apr 2023 13:02
Forum: Tips & Tricks, Questions & Answers
Topic: How to Clean the Filenames of Files in a Folder, According to a white List of Chars, Automatically?
Replies: 10
Views: 595

Re: How to Clean the Filenames of Files in a Folder, According to a white List of Chars, Automatically?

actually, I'm not experienced in regex. the script belongs to highend. viewtopic.php?p=193995#p193995
I post it as example how to do rename in one go (regex maybe inaccurate)
by yusef88
07 Apr 2023 03:57
Forum: Tips & Tricks, Questions & Answers
Topic: How to Clean the Filenames of Files in a Folder, According to a white List of Chars, Automatically?
Replies: 10
Views: 595

Re: How to Clean the Filenames of Files in a Folder, According to a white List of Chars, Automatically?

I hope this will help you. $names = ""; foreach($item, <selitems <crlf>>, <crlf>, "e") { $str = gpc($item, "file"); $str = regexreplace("$str", "[\[|\]||{|}|;|,\!]", "_"); $str = regexreplace("$str", "[^a-zA-Z0-9\(\)-_\.]&quo...