Parameters

  • 20 Jan

    Environment Variables

    Dear Users,

    We’ve added some extra replacement parameters for [WIN] as Source, Backup and [WIN] as Destination

    >Replacement Parameters, added Environment Variables (v2018.1.20.0)

    If you have any question about this new option, please let us know.

    Regards,

    Limagito Team

  • 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
  • 20 Mar

    Rule Parameters – File Contents Option

    In version v11.103.20.0 we’ve added the File Contents option. With this option you can load the contents of a ‘text’ file and put this into a user parameter (%FCA – %FCE). This parameter can be used throughout the application.  You can choose how often you want te reload the contents of this file

    • On Application Startup
    • On Rule Begin
    • On Destination

    You can also use replacement parameters in the setup of the Filename you want to load.

    GUI.FileContents

    Secondly we’ve added a File Contents Filter option (File Filter Setup Form). So this way you can include/exclude files that exists in the File Contents of an external file. The contents of this external file will decide if a file will be picked up or not by our File Mover.

    GUI.FileFilter.FileContents

    Regards,

    Limagito Team

    By Limagito-Team Filters Parameters ,
1 2 3 4 5
SEARCH