File Mover Blog

  • 25 Jun

    LimagitoX2 (v12) File Mover Released

    Dear users,

    LimagitoX2 Filemover is available in the download section of www.limagito.com

    The License Key of version X or XI will no longer work on this new version. Corporate license holders can request their License key for version X2.

    Some things to keep in mind when upgrading to version X2.

    • Previous versions (X, XI) and X2 use the same settings database. Create a backup of your settings first!
    • You don’t need to uninstall the previous version. Both can be installed at the same time. Each version uses a different install folder (no need to change this).
    • Do not run multiple versions at the same time because both would interfere with each other.
    • The major change in version X2 is the full remote GUI for Service and Application. No need to restart the service after every change in setup.
    • Some options are no longer available (FTP Server, User Mode).

     

    Please Read:

     

    As always, feedback would be much appreciated.

    Best Regards,

    Limagito Team

    By Limagito-Team News
  • 19 May
    LimagitoX2 – The neXt BIG step

    LimagitoX2 – The neXt BIG step

    https://www.linkedin.com/pulse/limagitox2-next-big-step-file-mover

     

    Credits: www.iconarchive.com

    By Limagito-Team News
  • 13 May

    Code Page Identifiers

    In Limagito v11.05.13.0 we’ve added the following function:

    Function psSaveTxt2File(Text, Destination: String; Encoding: String; WriteBOM: Boolean): Boolean;

    This function can be used to convert text file encoding. The ‘Encoding’ string var that needs to be passed to the function can be found in the name table in the following link:

    msdn.microsoft.com

    In the following example we’ll read the content of a text file (File Filter is set to only pickup .txt files) and save it using ‘ISO-8859-1’ encoding.

    On Destination Pascal Script


    var
    aList: TStringList;
    aString: String;
    const
    ctOutputPath = 'C:\Test\Out\';
    Begin
    psExitCode:= 1;
    // ... add your code here
    aList := TStringList.Create;
    Try
    Try
    aList.LoadFromFile(psFilePath + psFileName);
    // Save
    psSaveTxt2File(aList.Text, ctOutputPath + psFileName, 'ISO-8859-1', False);
    Except
    psLogWrite(1, '', 'Pascal Script Exception');
    End;
    Finally
    aList.free;
    End;
    End.

    Best Regards,
    Limagito Team

    By Limagito-Team Parameters
1 130 131 132 133 134 135 136 151
SEARCH