Search found 17 matches

by Florent
20.06.2019, 07:19
Forum: Discussion
Topic: Firewall detects outgoing traffic from freecommander.exe - Why?
Replies: 6
Views: 48002

Re: Firewall detects outgoing traffic from freecommander.exe - Why?

Hello,
This is a good question. I would like to know the answer too.
by Florent
06.04.2019, 19:19
Forum: Discussion
Topic: Inconsistent regex search with accentuated characters
Replies: 0
Views: 10476

Inconsistent regex search with accentuated characters

Hello, I am trying to figure out why there are differences between file name search and content search when using regular expressions. For instance to find "memo" or "mémo" in the content of text files, I can use the classical regex : "m(e|é)mo". Whereas, to find "...
by Florent
11.02.2019, 13:32
Forum: General Discussion
Topic: Multi-Rename with Regular Expressions in FreeCommander
Replies: 4
Views: 11902

Re: Multi-Rename with Regular Expressions in FreeCommander

Thank you very much NetMage.
I will get a look at it to further understand how it works.
by Florent
21.01.2019, 22:30
Forum: General Discussion
Topic: AND operator when using Search file content
Replies: 2
Views: 7717

Re: AND operator when using Search file content

Good question, even when not using xdoc2txt. I did a bit of searching and found that this regex works (?s)(?=.*word1)(?=.*word2) regardless of the order of "word1" and "word2", and even if they are on separate lines. It is cumbersome but it works. If a simpler way exists, I would...
by Florent
21.01.2019, 21:33
Forum: General Discussion
Topic: Deletion roll back?
Replies: 4
Views: 8387

Re: Deletion roll back?

I don't know what you mean exactly by "clean up" but I guess that you deleted the folder permanently (SHIFT + SUPPR) or something equivalent. You need a tool like Recuva to try to get your data back if it has not been written over. The best option is to remove your hard drive (where the fo...
by Florent
20.01.2019, 22:59
Forum: General Discussion
Topic: Multi-Rename with Regular Expressions in FreeCommander
Replies: 4
Views: 11902

Re: Multi-Rename with Regular Expressions in FreeCommander

Interesting topic. But I did not find a solution to your problem either. The link provided by Marek gives some information on the synthax. Where can I find the full documentation (for free)? I am kind of lost among all the regex flavor documentations available, I would like to know better the one us...
by Florent
26.12.2018, 09:59
Forum: Discussion
Topic: How to make a converter?
Replies: 12
Views: 30829

Re: How to make a converter?

Still using 7z.exe, I made this: using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; namespace Converter2Txt { class Program { static void Main(string[] args) { ConvertToTxt(args[0], args[1]); } static void ConvertToTxt(string inputFile, string outputFile) { if...
by Florent
20.12.2018, 23:51
Forum: General Discussion
Topic: How to synchronize several folders at once
Replies: 2
Views: 5992

Re: How to synchronize several folders at once

Ok, too bad. I will stick to Robocopy then.
Do you plan to add this functionality anytime soon?
by Florent
19.12.2018, 21:13
Forum: General Discussion
Topic: How to synchronize several folders at once
Replies: 2
Views: 5992

How to synchronize several folders at once

Hello, Occasionally, I need to synchronize several folders (at once) on an external drive. Currently I use robocoy in a script but I would like to do it with the synchronize tool of FC which is much more user friendly. It seems that it can only be done one folder at a time. I thought that using a fi...
by Florent
15.12.2018, 23:47
Forum: Bug Reports
Topic: Viewer Settings Still Not Saving
Replies: 2
Views: 7911

Re: Viewer Settings Still Not Saving

Good point, like you, I had problems with unsaved Viewer settings that were driving me nuts.
Unckecking "use same settings for viewer and quick viewer" worked for me.

Thank you Max :)
by Florent
15.12.2018, 23:05
Forum: Discussion
Topic: How to make a converter?
Replies: 12
Views: 30829

Re: How to make a converter?

That's it, the "View->Show converted file" parameter is the key. Using 7z.exe (refer to post#4) works like a charm with these parameters: [TfcViewerForm_Converter] Enabled1=1 Filter1=.zip.7z Prg1=C:\Program Files\7-Zip\7z.exe TargetExt1=.txt Param1=l "%ConvertSourceFile%" >%Conve...
by Florent
15.12.2018, 13:12
Forum: Discussion
Topic: How to make a converter?
Replies: 12
Views: 30829

Re: How to make a converter?

OK, I tried it this morning when I looked more carefully to the meaning of your previous post, but I still can't make it work. Here is the code: // first argument is not used, second argument is used as name of the created (dummy) file using System; using System.IO; namespace CreateTxt2 { class Writ...
by Florent
14.12.2018, 23:07
Forum: Discussion
Topic: How to make a converter?
Replies: 12
Views: 30829

Re: How to make a converter?

OK, so I did what you explained: I created an exe file that takes a filename as input and creates a text file as output with the same filename (but with a .txt extension). I did it with a simple (quick and dirty) C# class just for testing. using System; using System.IO; namespace CreateTxt { class W...
by Florent
13.12.2018, 14:48
Forum: Discussion
Topic: How to make a converter?
Replies: 12
Views: 30829

Re: How to make a converter?

up

I can't believe there is only one converter compatible with FreeCommander: xdoc2text.exe.
There got to be other converters or a way to make one.

Please give me some hints.
by Florent
02.12.2018, 14:04
Forum: Discussion
Topic: How to make a converter?
Replies: 12
Views: 30829

Re: How to make a converter?

To take the "zip file" example again, I tried to configure a converter with 7z.exe (which is the command line version of 7zFM.exe we currently use with GUI). Writing the following code in a console displays the content of "test.zip": PS D:\folder> .\7z.exe l test.zip I thought it...