Tag

file transfer

2 views collected around this technical thread.

Test Development Learning Exchange
Test Development Learning Exchange
Apr 21, 2025 · Mobile Development

Using ADB to Push, Pull, and Manage Files on Android Devices

This guide explains how to use the Android Debug Bridge (ADB) to push files from a computer to a device, pull files from the device, and perform basic file system operations such as listing directories, creating and deleting folders, moving files, and viewing file contents.

Mobile Developmentfile transfer
0 likes · 4 min read
Using ADB to Push, Pull, and Manage Files on Android Devices
Practical DevOps Architecture
Practical DevOps Architecture
Apr 10, 2025 · Operations

Using Ansible fetch Module to Copy Files from Remote Server

This guide explains how to use Ansible's fetch module to copy files from a remote server to a local machine, including configuration, execution, verification, and key parameters such as flat and fail_on_missing.

Ansibleautomationfetch
0 likes · 3 min read
Using Ansible fetch Module to Copy Files from Remote Server
Efficient Ops
Efficient Ops
Mar 11, 2025 · Operations

Boost Your DevOps Efficiency with trzsz: Fast Terminal File Transfers

This guide introduces trzsz, an open‑source terminal file‑transfer tool that integrates seamlessly with popular shells and terminals, supports upload, download, and batch operations across Linux, macOS, and Windows, and includes a high‑speed trzsz‑ssh extension for efficient SSH workflows.

SSHautomationfile transfer
0 likes · 5 min read
Boost Your DevOps Efficiency with trzsz: Fast Terminal File Transfers
Top Architecture Tech Stack
Top Architecture Tech Stack
Dec 12, 2024 · Operations

LocalSend: Cross‑Platform Decentralized LAN File Transfer – Installation and Usage Guide

This article introduces LocalSend, an open‑source cross‑platform LAN file‑transfer tool, explains how to download and install it on Windows, macOS, Linux, Android and iOS, and walks through its user interface and file‑sending/receiving processes with performance notes.

LANLocalSendcross-platform
0 likes · 4 min read
LocalSend: Cross‑Platform Decentralized LAN File Transfer – Installation and Usage Guide
Architecture Digest
Architecture Digest
Nov 24, 2024 · Operations

LocalSend: Open‑Source LAN File Transfer Tool – Features and Usage Guide

This article introduces the open‑source, cross‑platform LAN file‑transfer application LocalSend, explains how to download and install it on various operating systems, and provides a step‑by‑step walkthrough of its Windows interface for sending and receiving files, including performance observations.

LANLocalSendcross-platform
0 likes · 4 min read
LocalSend: Open‑Source LAN File Transfer Tool – Features and Usage Guide
macrozheng
macrozheng
Nov 14, 2024 · Operations

How to Transfer Files Seamlessly Across Devices with LocalSend – A Free Open‑Source Solution

This article introduces LocalSend, a free open‑source cross‑platform tool that enables secure, fast, and decentralized file and message sharing over local networks without internet, explains its key features, provides step‑by‑step installation instructions, and includes a simple Flutter build script.

FlutterLocalSendcross-platform
0 likes · 6 min read
How to Transfer Files Seamlessly Across Devices with LocalSend – A Free Open‑Source Solution
Architecture Digest
Architecture Digest
Sep 20, 2024 · Operations

MobaXterm: Download, Installation, Basic Usage, and Feature Highlights

This guide introduces MobaXterm, explains how to download the free Home edition, install it, create SSH sessions, and highlights its powerful features such as integrated SFTP, remote monitoring, session management, multiple connection types, split‑screen layouts, and built‑in tools, making it a versatile solution for developers and system administrators.

MobaXtermSSHfile transfer
0 likes · 6 min read
MobaXterm: Download, Installation, Basic Usage, and Feature Highlights
Java Captain
Java Captain
Mar 7, 2024 · Backend Development

Various Methods for Transferring PDF Files in Java

This article explains several common approaches for transferring PDF files in Java, including HTTP, FTP, email via JavaMail, and real‑time WebSocket transmission, outlining their implementation steps, advantages, and considerations such as security and performance.

EmailFTPJava
0 likes · 5 min read
Various Methods for Transferring PDF Files in Java
Test Development Learning Exchange
Test Development Learning Exchange
Feb 19, 2024 · Operations

Using Paramiko for SSH Connections, Command Execution, and File Operations in Python

This guide demonstrates how to use the Python Paramiko library to establish SSH connections to remote servers via password or key authentication, execute commands, and perform file operations such as uploading, downloading, creating, editing, and deleting files, with example code snippets and security tips.

ParamikoPythonRemote Execution
0 likes · 4 min read
Using Paramiko for SSH Connections, Command Execution, and File Operations in Python
Test Development Learning Exchange
Test Development Learning Exchange
Nov 19, 2023 · Backend Development

Automating FTP File Transfers with Python Scripts

This article explains how to use Python to automate FTP file transfers, covering installation of PyFTP modules, writing upload/download scripts, and scheduling tasks for automation.

FTP automationPyFTPlibPython scripting
0 likes · 3 min read
Automating FTP File Transfers with Python Scripts
php中文网 Courses
php中文网 Courses
Jul 29, 2023 · Backend Development

Using PHP FTP Functions to Connect, Download, and Upload Files

This tutorial explains how to enable PHP's FTP extension, connect to an FTP server, and use PHP code examples to download and upload files securely, while highlighting necessary configuration, error handling, and best practices such as using SSL/TLS.

Code ExampleFTPfile transfer
0 likes · 3 min read
Using PHP FTP Functions to Connect, Download, and Upload Files
Java Architect Essentials
Java Architect Essentials
Jul 28, 2022 · Backend Development

Why Dubbo Is Unsuitable for File Transfer and How HTTP/Feign Handles It

The article explains why Dubbo's RPC design and single‑connection model make it inefficient for transmitting files, compares the memory‑heavy approach of sending byte arrays with the streaming nature of HTTP, and shows how Feign can upload files but still suffers from in‑memory buffering.

DubboRPCbackend
0 likes · 9 min read
Why Dubbo Is Unsuitable for File Transfer and How HTTP/Feign Handles It
Laravel Tech Community
Laravel Tech Community
Jun 7, 2022 · Operations

Using trzsz for File Transfer over SSH: Installation, Commands, and Examples

This guide explains how to install and use the trzsz tool for uploading and downloading files over SSH, including command syntax, release details, upcoming features, and example usage on Windows CMD and native Ubuntu terminals.

LinuxSSHcommand line
0 likes · 2 min read
Using trzsz for File Transfer over SSH: Installation, Commands, and Examples
Aikesheng Open Source Community
Aikesheng Open Source Community
Apr 14, 2022 · Operations

Performance Comparison of Linux File Transfer Tools (scp, ftp, sftp, rsync, tftp, nc, Python SimpleHTTPServer)

This article presents a systematic performance comparison of several Linux file‑transfer utilities—including scp, ftp, sftp, rsync, tftp, nc, and a Python SimpleHTTPServer—by measuring transfer times for a 50 GB single file and 51 GB spread across 51 200 one‑megabyte files, and discusses each tool’s speed, compression, encryption, and typical use cases.

Linuxfile transferoperations
0 likes · 17 min read
Performance Comparison of Linux File Transfer Tools (scp, ftp, sftp, rsync, tftp, nc, Python SimpleHTTPServer)
IT Services Circle
IT Services Circle
Feb 13, 2022 · Fundamentals

Implementing a Simple FTP‑Like File Transfer Using TCP Sockets in C

This article demonstrates how to create a basic FTP‑like file transfer application in C using Windows Winsock, covering both server and client implementations, handling file size negotiation, data transmission loops, and compilation steps, with complete source code examples.

C++Socket ProgrammingTCP
0 likes · 6 min read
Implementing a Simple FTP‑Like File Transfer Using TCP Sockets in C
Code Ape Tech Column
Code Ape Tech Column
Jan 31, 2022 · Operations

MobaXterm Download, Installation, Basic Usage, and Feature Highlights

This guide introduces MobaXterm, provides download links for the free Home edition, walks through installation steps, demonstrates basic SSH session creation, and highlights key features such as integrated SFTP, resource monitoring, session management, multiple connection types, and customizable UI options.

MobaXtermSSHSession Management
0 likes · 6 min read
MobaXterm Download, Installation, Basic Usage, and Feature Highlights
Architects Research Society
Architects Research Society
Jan 29, 2022 · Information Security

Best Practices for Secure Remote Access to Industrial Control Systems (ICS)

This article explains why remote access to industrial control systems is essential, outlines the Purdue Enterprise Reference Architecture levels, and provides detailed best‑practice recommendations—including DMZ design, authentication, jump‑host usage, secure file transfer, and controls for direct connections—to mitigate the significant security risks associated with remote ICS access.

AuthenticationICSSecurity
0 likes · 19 min read
Best Practices for Secure Remote Access to Industrial Control Systems (ICS)
IT Xianyu
IT Xianyu
Jul 8, 2021 · Operations

FinalShell: A Free Cross-Platform SSH and Server Management Tool – Features and Usage Guide

This article introduces FinalShell, a free Chinese‑developed cross‑platform SSH, remote desktop, and server management tool, outlines its core features such as network monitoring, file transfer, and theme customization, and provides step‑by‑step screenshots for connecting to Linux and Windows servers.

FinalShellSSHServer management
0 likes · 5 min read
FinalShell: A Free Cross-Platform SSH and Server Management Tool – Features and Usage Guide