• 24 Mar

    Development System Update – Tokyo

    Dear users,

    Today we have created the first build of the LimagitoX File Mover (v10.3.24.0) with our new development system. Updating such a development system is not an easy task and it doesn’t come without risks. Main reason we do this is because we want to keep up with the latest OS en third party code. We’re using Windows 10 Pro as development OS now, all on virtual machines. Our development tool is now on the latest Delphi release 10.2 Tokyo Release 3.

    Regards,
    Limagito Team

    By Limagito-Team News ,
  • 20 Mar

    Pascal Script, generate a file

    Q: I want to generate a file which is called “complete” in target folder after all files are moved to target folder.

    In this case you’ll need to add 2 Pascal Scripts.
    First one ‘One Rule Begin’ script:

    Begin
      psExitCode:= 1;
      // … add your code here
      psResetCounter;
    End.
    Second one ‘On Rule End’ Script (you need to adjust the ctFilePath value in the script):

    Var
      tmpFile: TStringList;
    Const
      ctFilePath = 'C:\Test\Out\OutPS\';
      ctFileName = 'complete.txt';
      ctFileContent = 'dummy file';
    Begin
      psExitCode:= 1;
      // ... add your code here
      If psCounter > 0 Then
      Begin
        tmpFile := TStringList.Create;
        Try
          Try
            tmpFile.Add(ctFileContent);
            tmpFile.SaveToFile(ctFilePath + ctFileName);
            psLogWrite(1, '', 'Save complete file succes');
          Except
            psLogWrite(1, '', 'Save complete file error');
          End;
        Finally
          tmpFile.Free
        End;
      End;
    End.

    #filetransfer #mft #filemanagement

    If you need any info  about this ‘generate a filet’ request, please let us know.

    Best regards,

    Limagito Team

    By Limagito-Team Pascal Script ,
  • 04 Mar

    How-To Use Logging to a SysLog Server

    Dear Users,

    We’ve added SysLog (UDP) as logging option to our File Mover (v2018.3.4.0). We’ve also reduced the amount of Log Levels to 4: “Error, Informational, Enhanced and Debug”. We strongly advice not to use the Debug log level in production.

    • SysLog Server Setup, this setup is common for all rules

    • Result of enabling the SysLog option

    Please let us know if you have any question/remark about this new option.

    Regards,

    Limagito Team

    By Limagito-Team Logging ,
SEARCH