Search found 298 matches

by kotlmg
17 Feb 2022 19:32
Forum: Script Exchange
Topic: How to select all except one type of file?
Replies: 10
Views: 3463

Re: How to select all except one type of file?

how to select all files except all the folders?
by kotlmg
16 Jan 2022 19:50
Forum: Tips & Tricks, Questions & Answers
Topic: [Scripting help] Open file / target shortcut
Replies: 16
Views: 2968

Re: [Scripting help] Open file / target shortcut

i got the answer. thanks. "foxit..." $gfts = "|" . replace(get("genericfiletype", "pdf", "|"), "*.") . "|"; $items = ""; foreach($item, <get SelectedItemsPathNames |>) { if (exists($item) != 1) { continue; } $shortcut = ...
by kotlmg
16 Jan 2022 19:27
Forum: Tips & Tricks, Questions & Answers
Topic: [Scripting help] Open file / target shortcut
Replies: 16
Views: 2968

Re: [Scripting help] Open file / target shortcut

in the above code, if i have to open only pdf files and nothing else with pdf viewer, then how i should modify the generic file extension to pdf files?
by kotlmg
16 Jan 2022 17:50
Forum: Tips & Tricks, Questions & Answers
Topic: [Scripting help] Open file / target shortcut
Replies: 16
Views: 2968

Re: [Scripting help] Open file / target shortcut

after properly indenting the code, is is working perfectly. thanks a lot.
by kotlmg
16 Jan 2022 17:07
Forum: Tips & Tricks, Questions & Answers
Topic: [Scripting help] Open file / target shortcut
Replies: 16
Views: 2968

Re: [Scripting help] Open file / target shortcut

it is not working.
D:\AVI\Chapter 10 Exercise Class 7 _ Sanskrit Ruchira Part 2 _ Studyment.mp4
D:\AVI\#Day7.2 ll AP & GP Special Tricks.mp4
D:\AVI\Loss Belly Fat in one week at Home _ Belly Fat burning workouts Telugu.mp4
D:\AVI\external tools in emeditor.pdf
D:\AVI\sanscrit excersizes.pdf
by kotlmg
16 Jan 2022 16:41
Forum: Tips & Tricks, Questions & Answers
Topic: [Scripting help] Open file / target shortcut
Replies: 16
Views: 2968

Re: [Scripting help] Open file / target shortcut

it is not working. i dont know where i am going wrong. C:\Users\M.K.RAO\Downloads\PlayWithMedia.xys C:\Users\M.K.RAO\Downloads\PlayWithMedia - Copy.xys C:\Users\M.K.RAO\Downloads\Open pdf.xys C:\Users\M.K.RAO\Downloads\WhatsApp Video 2022-01-15 at 18.23.55.mp4 C:\Users\M.K.RAO\Downloads\VMV Q 06 202...
by kotlmg
16 Jan 2022 14:34
Forum: Tips & Tricks, Questions & Answers
Topic: [Scripting help] Open file / target shortcut
Replies: 16
Views: 2968

Re: [Scripting help] Open file / target shortcut

thanks a lot for the above code. if we select media and pdf and .xys files etc, it is not able to filter pdf files, .xys files ,. i want all files other than media files to be filtered. if i select only pdf files and .xys then your code is perfectly working. please see. "Potplayer..." $gft...
by kotlmg
16 Jan 2022 09:35
Forum: Tips & Tricks, Questions & Answers
Topic: [Scripting help] Open file / target shortcut
Replies: 16
Views: 2968

Re: [Scripting help] Open file / target shortcut

$items = ""; foreach($item, "<get SelectedItemsPathNames |>") { if (exists($item) != 1) { continue; } $shortcut = property("#ShortcutTarget", $item); if ($shortcut) { $item = $shortcut; } $items = $items . quote($item) . " "; } open """C:\Progr...
by kotlmg
07 May 2021 13:40
Forum: Tips & Tricks, Questions & Answers
Topic: single click for media files and double click for other files
Replies: 3
Views: 583

single click for media files and double click for other files

hello sir,
is there any setting in xyplorer to allow only single click on media files (.mp4, .avi, .mkv, . ts, .dat, .mpg to open and play them and double click on other files to open them ?
is it possible without any script?
by kotlmg
27 Nov 2020 17:04
Forum: Script Exchange
Topic: need script to move selected files to current date folder
Replies: 2
Views: 927

Re: need script to move selected files to current date folder

$SelectedItems = get("SelectedItemsPathNames", "|");
moveto "<date yyyy-mm-dd>", $SelectedItems;


thanks
by kotlmg
27 Nov 2020 16:33
Forum: Script Exchange
Topic: need script to move selected files to current date folder
Replies: 2
Views: 927

need script to move selected files to current date folder

i need a script to move selected files to current date folder.

there is one right click option in xyplorer to create folder with selected items as New Folder With Items. i could not find the command id. i want that New Folder With Items to be renamed to current date.
by kotlmg
15 Sep 2020 17:42
Forum: Script Exchange
Topic: Need a script: Select files until an extension or file type
Replies: 9
Views: 2037

Re: Need a script: Select files until an extension or file type

thanks a lot.
one line code is marvellous.
can you give one line code for selecting files above also?