Transferring Files to Authenticx
Now that you've successfully connected to your SFTP server, its time to start transfering some files!
FileZilla
Transferring files with FileZilla is as simple as dragging the file you wish to transfer from the Local site to the Remote site.
SFTP CLI
Transferring files with the SFTP CLI is also very simple. To move a file from your local computer to the remote, you use the put command.
sftp \> put /path/to/local/file.txt- Ex.
sftp \> put hello.txt
If you wish to change the location of where the file will end up on the remote you must use the cd command to navigate to that directory.
sftp \> cd /path/to/directory- Ex.
sftp \> cd ./authenticx/files
Updated 5 months ago
