FileZilla: 로컬 컴퓨터에서 서버의 여러 폴더로 복사

FileZilla: 로컬 컴퓨터에서 서버의 여러 폴더로 복사

내부 FTP 서버가 있는 하드웨어를 사용하고 있습니다. 해당 서버에는 10개의 폴더가 있습니다. FileZilla를 사용하여 내 컴퓨터의 폴더 내용을 FTP 서버의 10개 폴더 각각에 복사할 수 있는 방법이 있는지 알고 싶습니다.

그렇지 않은 경우 개발 없이 이 작업을 수행하는 다른 소프트웨어가 있습니까? 그렇지 않다면 Python이나 LabVIEW로 직접 뭔가를 만들어야 할 것입니다.

이러한 폴더에 대한 그림은 아래 링크를 참조하세요.

https://www.segger.com/products/production/flasher/models/gang-programmer-flasher-ate/#configuring-flasher-ate-via-ftp

답변1

어떤 OS에서 Filezilla를 사용하고 있나요? 예를 들어 내장을 사용할 수 있습니다Windows FTP-클라이언트업로드 명령줄에서 쉽게 자동화할 수 있습니다.

답변2

Windows 명령줄 ftp 클라이언트에는 -s <filename>옵션이 있습니다. 실행할 명령을 나열합니다.

다음과 같이 보일 것입니다 :

open ftp.example.com
cd remote_folder1
mput Source_dir
cd remote_folder2
mput Source_dir
cd remote_folder3
mput Source_dir
cd remote_folder4
mput Source_dir
cd remote_folder5
mput Source_dir
cd remote_folder6
mput Source_dir
cd remote_folder7
mput Source_dir
cd remote_folder8
mput Source_dir
cd remote_folder9
mput Source_dir
cd remote_folder10
mput Source_dir

관련 정보