Search found 13326 matches

by highend
26 May 2011 13:28
Forum: Script Exchange
Topic: folderreport: How to report items with exceeding length?
Replies: 12
Views: 2887

Re: folderreport: How to report items with exceeding length?

Thanks for the hint, Stefan!

I hope I'll get this into a small script by myself ;)

Regards,
highend
by highend
26 May 2011 13:11
Forum: Script Exchange
Topic: folderreport: How to report items with exceeding length?
Replies: 12
Views: 2887

folderreport: How to report items with exceeding length?

Hi, is there a way to let folderreport only output files / directories that exceed the normal 260 character limitation? Background: I'm syncing my folders with HiDrive (Strato) via rsync and I want to be sure that nothing is lost (because rsync skips all things beyond the character limit). Tia, high...
by highend
26 May 2011 12:13
Forum: Wishes
Topic: Select file by typing a part of it's name?
Replies: 6
Views: 1348

Re: Select file by typing a part of it's name?

Thx LittleBig,

I was so used to this function in SpeedCommander without the need to go to the address bar and use a prefix for this kind of task...

Regards,
highend
by highend
26 May 2011 10:43
Forum: Wishes
Topic: Select file by typing a part of it's name?
Replies: 6
Views: 1348

Select file by typing a part of it's name?

Hi, the basic feature is already implemented (typing the beginning of a file / dir name selects the first match in the active pane). But what about being able to do this with only a part of the name (that can be anywhere in the name, not only at the beginning)? Being even more powerful, any chance t...
by highend
15 May 2011 13:54
Forum: Script Exchange
Topic: Invoke ffmpeg with openwith?
Replies: 0
Views: 965

Invoke ffmpeg with openwith?

Hi, it's just a simple script to convert any video to mpeg2 (dvd compliant) to view it on my SAT receiver (which only supports proper mpeg2 files). //Convert current file "VideoConvert : convert" //set FFmpeg and Sound path below $exec = "D:\Tools\FFmpeg\ffmpeg.exe"; $microwav = ...
by highend
14 May 2011 20:48
Forum: Bug Reports
Topic: Shell menu language?
Replies: 6
Views: 1876

Shell menu language?

Don't know if it's a bug or intended behaviour... Windows 7 x64 SP1 German, XYplorer latest beta (english). If I rightclick on a folder in the left pane I have my normal (german) shell functions like "Ausschneiden, Kopieren, Einfügen", etc. If I use "Kopieren" (english: Copy) and...
by highend
14 May 2011 20:34
Forum: Bug Reports
Topic: Loadtree slightly bugged?
Replies: 1
Views: 681

Loadtree slightly bugged?

v9.90.0925 I use two different loadtree scripts in a catalog. First one: // Load Download Tree & Switch Panes loadtree "Desktop|Eigene Dokumente|C:\Program Files\|C:\Program Files (x86)\|C:\Temp\|C:\Users\Highend\|C:\Windows\|D:\Images\|D:\Install\|D:\Temp\|D:\Tools\|D:\Users\Highend\Dokume...
by highend
04 Apr 2011 15:56
Forum: Bug Reports
Topic: Network - Not all machines visible
Replies: 19
Views: 3179

Re: Network - Not all machines visible

I should have been clearer: Z: doesn't appear in the Tree hanging directly under the root Computer-node? If you mean: It appears as letter Z: in the tree (it's not at the top but at the bottom of it)? Yes it does. It isn't a problem of XYplorer to show drive letters that were assigned through opera...
by highend
04 Apr 2011 13:16
Forum: Bug Reports
Topic: Network - Not all machines visible
Replies: 19
Views: 3179

Re: Network - Not all machines visible

nas8e9 wrote:Does the share become visible to XYplorer after using Windows Explorer to map it to a drive letter?
You mean visible in the network place? No. Still only the two physical ones (while \\vm-xp-sat\Movies mapped to Z:)
by highend
04 Apr 2011 12:43
Forum: Bug Reports
Topic: Network - Not all machines visible
Replies: 19
Views: 3179

Re: Network - Not all machines visible

Uh, try harder please!

It's not an option to use the build in explorer for such a simple task :)
by highend
04 Apr 2011 12:11
Forum: Bug Reports
Topic: Network - Not all machines visible
Replies: 19
Views: 3179

Network - Not all machines visible

Hi, Windows 7 Ultimate x64 DE XYplorer 9.90.0605 (Beta) I'm currently running a Windows XP SP3 machine inside Virtual Box 4.0.4 which shares the folder "C:\Movies" as "\\vm-xp-sat\Movies" The windows explorer has no problems to show the machine vm-xp-sat and gain access to that f...
by highend
29 Mar 2011 22:56
Forum: Wishes
Topic: Tough words about GUI
Replies: 375
Views: 52915

Re: Tough words about GUI

admin wrote:It's not the time to dive into further polishing here, because I have to finalize XYcopy 2.0 quickly...
Can you show us a few screenshots, how XYcopy will look like / is integreated in the ui of XYplorer (I hope it's a bit like the Show Panel Function (F12))?
by highend
13 Mar 2011 13:13
Forum: Script Exchange
Topic: Replace dot / underscores in file- and foldernames?
Replies: 13
Views: 6910

Re: Replace dot / underscores in file- and foldernames?

My temporary solution (which will only work with a single file) is: else { ////////////// ADDITIONAL //rename files without match criteria "v[:Digits:]" too: //replace all underscore by an space rename s, "_/ " , , $FilePath\$FileName; //will only work with single files: $FileNam...
by highend
12 Mar 2011 22:32
Forum: Script Exchange
Topic: Replace dot / underscores in file- and foldernames?
Replies: 13
Views: 6910

Re: Replace dot / underscores in file- and foldernames?

Thank you Stefan! Long explanation how intending has to be done to get scripts working but I've never seen these rules before and was wondering in the past why some of my small scripts weren't working correctly *g* Now I've got it. Renaming works fine so far with your second script (and copying the ...
by highend
11 Mar 2011 21:44
Forum: Script Exchange
Topic: Replace dot / underscores in file- and foldernames?
Replies: 13
Views: 6910

Re: Replace dot / underscores in file- and foldernames?

After inserting the copied code into the text editor I'm using (EditPlus), the second line global $FileName, $InStrRev, $Sign; and the last line } weren't intended. After intending them with one space in front and starting the script once more I get an "XYplorer Scripting" window. line 6 i...