cURL을 사용한 FTP/SFTP 파일 전송
■CURL WITH FTP Login usign curl on FTPcurl -P – –insecure “ftp://82.45.34.23:21/” –user “testuser:testpassword” Upload using curl on FTPcurl -p – –insecure “ftp://82.45.34.23:21/CurlPutTest/” –user “testuser:testpassword” -T “C:\test\testfile.xml” –ftp-create-dirs Download using curl on FTPcurl -p – –insecure “ftp://82.45.34.23:21/CurlPutTest/testfile.xml” –user “testuser:testpassword” -o “C:\test\testfile.xml” –ftp-create-dirs Rename using curl on FTPcurl -p – –insecure “ftp://82.45.34.23:21/CurlPutTest/” –user “testuser:testpassword” -Q “-RNFR […]
cURL을 사용한 FTP/SFTP 파일 전송 더 읽기"