FileMover Utils
-
CliFileExists.exe
: Freeware command line utility to check if a file exists.
Can be used with the command option in Limagito to create a Copy/Move/Delete condition.
Usage : CliFileExists "filename to check"
Example : CliFileExists \\MyServer\MyShare\Myfile.pdf
Exit Code returns 1 if the file exists.
-
CliDirectoryExists.exe
: Freeware command line utility to check if a directory exists.
Can be used with the command option in Limagito to create a Copy/Move/Delete condition.
Usage : CliDirectoryExists "directory to check"
Example : CliDirectoryExists \\MyServer\MyShare
Exit Code returns 1 if the Directory exists.
-
CliSftpSendFile.exe
: Freeware Command Line Utility to Send Files using Sftp SSHv2.
Can be used with the command option in Limagito to send files using sftp (SSHv2).
This application uses cryptlib cl32.ddl
Copyright 1992-2008 Peter Gutmann. All rights reserved.
Usage : CLISFTPSENDFILE source destination [Options]
   source Specifies the file to be transfered
   destination Specifies the file destination
OPTIONS
   /A append true
   /-A append false [DEFAULT]
   /O overwrite true [DEFAULT]
   /-O overwrite false
   /P PreserveFileTimes true [DEFAULT]
   /-P PreserveFileTimes false
EXAMPLE
   CliSftpSendFile C:\Input\MyFile.pdf sftp://MyUserName:MyPassword@127.0.0.1:22/MyDestination
EXITCODES
   0 file transfer not valid
   1 file tranfered valid
   2 file already exists with overwrite false
   254 error, wrong arguments
   255 error, general error
|