Powershell ftp上传错误530未登录

Jon*_*Jon 9 ftp powershell

我正在努力让PowerShell脚本工作.我是PowerShell的新手,所以可能会遗漏一些愚蠢的东西.

$sourceuri = "ftp://ftp.example.com/myfolder/myfile.xml"
$username = "user"
$password = "password"

# Create a FTPWebRequest object to handle the connection to the ftp server
$ftprequest = [System.Net.FtpWebRequest]::create($sourceuri)

$credentials = New-Object System.Net.NetworkCredential($username,$password)
# set the request's network credentials for an authenticated connection
$ftprequest.Credentials = $credentials

$ftprequest.Method = [System.Net.WebRequestMethods+Ftp]::UploadFile
$ftprequest.UseBinary = 1
$ftprequest.KeepAlive = 0

# read in the file to upload as a byte array
$content = gc -en byte $fileName
$ftprequest.ContentLength = $content.Length
# get the request stream, and write the bytes into it
$rs = $ftprequest.GetRequestStream()
$rs.Write($content, 0, $content.Length)
# be sure to clean up after ourselves
$rs.Close()
$rs.Dispose()
Run Code Online (Sandbox Code Playgroud)

我收到以下错误:

Exception calling "GetRequestStream" with "0" argument(s): "The remote server returned an   error: (530) Not logged in."
At C:\temp\copyfile.ps1:63 char:35
+ $rs = $ftprequest.GetRequestStream( <<<< )
Run Code Online (Sandbox Code Playgroud)

我可以通过IE连接到它很容易,所以想到其他可能是错误的,所以在C#中快速做到这一点:

        string filePath = @"C:\temp\myfile.xml";
        string FTPAddress = @"ftp://ftp.example.com/myfolder";
        FtpWebRequest request = (FtpWebRequest)FtpWebRequest.Create(FTPAddress + "/" + Path.GetFileName(filePath));
        request.Method = WebRequestMethods.Ftp.UploadFile;
        string username = "user";
        string password = "password";
        request.Credentials = new NetworkCredential(username, password);
        request.UsePassive = true;
        request.UseBinary = true;
        request.KeepAlive = false;

        FileInfo file = new FileInfo(filePath);
        request.ContentLength = file.Length;
        int buffLength = 2048;
        byte[] buff = new byte[buffLength];
        int contentLen;

        FileStream fs = file.OpenRead();

        Stream strm = request.GetRequestStream();
        contentLen = fs.Read(buff, 0, buffLength);
        while(contentLen !=0 )
        {
            strm.Write(buff, 0, contentLen);
            contentLen = fs.Read(buff, 0, buffLength);
        }

        strm.Close();
        fs.Close();
Run Code Online (Sandbox Code Playgroud)

C#工作得很好,不知道为什么这不起作用,希望有人能够指出我的错误

编辑

解决了它,新的它将是一个愚蠢的东西.密码中有一个"$"符号,它在双引号内,但我没有意识到它需要被转义,只是根本没有想到它.具有讽刺意味的是,我不得不更改密码等,以便发布是安全的.

Eri*_*ris 2

来自原始海报乔恩

解决了它,新的这将是愚蠢的事情。密码中有一个“$”符号,它在双引号内,但我没有意识到它需要转义,只是根本没有想到它。具有讽刺意味的是,我必须更改密码等才能安全发帖。