DataFlex
DataFlex
Set a Remote File's POSIX Permissions
See more SFTP Examples
Demonstrates the Chilkat SFtp.SetPermissions method, which sets the POSIX permission bits of a remote item. The arguments are the remote path (or handle), whether the first argument is a handle, and the permission bits. Pass the permission bits only, not the file-type bits.
Background: This is the SFTP equivalent of
chmod. Common values, written as octal, are 0644 for a normal file, 0600 for a private file, and 0755 for an executable or a directory. In languages without octal literals the same values must be given in decimal or hexadecimal (for example 0755 is decimal 493). Setting an executable bit after uploading a script is the classic use.Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoSftp
Integer iPort
String sPassword
Boolean iIsHandle
Integer iPermissions
String sTemp1
Move False To iSuccess
// Demonstrates the SFtp.SetPermissions method, which sets the POSIX permission bits of a remote
// item. The 1st argument is the remote path (or handle), the 2nd (isHandle) indicates which,
// and the 3rd is the permission bits.
Get Create (RefClass(cComChilkatSFtp)) To hoSftp
If (Not(IsComObjectCreated(hoSftp))) Begin
Send CreateComObject of hoSftp
End
// Connect, authenticate, and initialize the SFTP subsystem.
Move 22 To iPort
Get ComConnect Of hoSftp "sftp.example.com" iPort To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoSftp To sTemp1
Showln sTemp1
Procedure_Return
End
// Normally you would not hard-code the password in source. You should instead obtain it
// from an interactive prompt, environment variable, or a secrets vault.
Move "mySshPassword" To sPassword
Get ComAuthenticatePw Of hoSftp "mySshLogin" sPassword To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoSftp To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComInitializeSftp Of hoSftp To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoSftp To sTemp1
Showln sTemp1
Procedure_Return
End
// The 1st argument is a path, so isHandle is False.
Move False To iIsHandle
// Pass the permission bits, not the file-type bits. 0755 gives the owner read/write/execute and
// read/execute to group and others -- a common mode for an executable script.
Move 493 To iPermissions
Get ComSetPermissions Of hoSftp "subdir/script.sh" iIsHandle iPermissions To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoSftp To sTemp1
Showln sTemp1
Procedure_Return
End
Showln "Permissions set."
Send ComDisconnect To hoSftp
End_Procedure