Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Remote Development - FTP, SFTP, SSH ManagerNew to Visual Studio Code? Get it now.
Remote Development - FTP, SFTP, SSH Manager

Remote Development - FTP, SFTP, SSH Manager

JDevs

|
380 installs
| (1) | Free
Gestiona fácilmente conexiones FTP, SFTP y SSH, optimizando tu productividad y manteniendo tu entorno de desarrollo limpio y eficiente.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Remote Development for Visual Studio Code

Optimize your workflow by connecting to remote FTP, SFTP/SSH servers directly from VS Code.

This extension allows you to seamlessly connect to remote servers via FTP, SFTP or SSH, enabling you to manage files and folders as if they were local. It’s designed to boost your productivity while keeping your development environment clean and efficient.


✨ Features

  • Connect to FTP and SFTP/SSH servers with ease.
  • Upload and download files directly from the editor.
  • Manage remote folders (create, rename, move, delete).
  • Edit remote files without downloading the entire project.
  • Copy file/folder paths for quick access.
  • View file and folder contents in real-time.
  • Temporary local caching of selected files for smooth integration with other VS Code extensions.

💙 Support the Project

If you find this extension useful, consider supporting its development:

Buy Me A Coffee QR Code


🔒 Configuration & Security

Server configurations are stored in a JSON file. It is your responsibility to keep this file secure.

Example Configuration

{
    "servers": [
        {
            "name": "SFTP/SSH Server Example",
            "host": "127.0.0.1",
            "username": "user_sftp",
            "password": "password_sftp",
            "port": 22,
            "path": "/",
            "type": "sftp" // Defaults to SFTP if not specified
        },
        {
            "name": "FTP Server Example",
            "host": "localhost",
            "username": "user_ftp",
            "password": "password_ftp",
            "port": 21,
            "path": "/public_html/",
            "type": "ftp"
        }
    ]
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft