C# FTP Download Errors with Authentication & System.NotImplementedException
up vote
-1
down vote
favorite
In attempting to download a file from a remote FTP server, the following exception is thrown:
The underlying connection was closed: The server committed a protocol violation.
The file was previously downloaded via a WebClient class but I am trying to implement a new solution with a FtpWebRequest per this MSFT example.
This error throws when calling request.GetResponse()
below:
string remoteFilePath =
ConfigWrapper.GetEncryptedString(
"FtpFeedPath",
@"ftp://subdomain.domain.com/folder/subfolder/file.xml.gz");
string tempFilePath = Path.GetTempPath() + @"ftpFile.gz";
string fileExtractName = Path.GetTempPath() + @"ftpFileftpFile.xml";
if (!Directory.Exists(Path.GetDirectoryName(fileExtractName)))
{
Directory.CreateDirectory(Path.GetDirectoryName(fileExtractName));
}
FtpWebRequest request =
(FtpWebRequest)WebRequest.Create(remoteFilePath);
request.Method = WebRequestMethods.Ftp.DownloadFile;
request.Timeout = -1;
request.UseBinary = true;
request.KeepAlive = true;
request.UsePassive = false;
request.Credentials = new NetworkCredential(
ConfigWrapper.GetEncryptedString(
"FtpUserName",
"123456"),
ConfigWrapper.GetEncryptedString(
"FtpPassword",
"password"),
remoteFilePath);
FtpWebResponse response = (FtpWebResponse)request.GetResponse();
Stream responseStream = response.GetResponseStream();
StreamReader reader = new StreamReader(responseStream);
Console.WriteLine(reader.ReadToEnd());
Console.WriteLine($"Download Complete, status{response.StatusDescription}");
reader.Close();
response.Close();
Digging into the exception shows this message:
ContentType = '((System.Net.WebException)ex).Response.ContentType' threw an exception of type 'System.NotImplementedException'
Most of the other StackOverflow answers related to this issue seem to resolve after changing the KeepAlive
property. That's not the case here. The other common recommendation is to get a network trace, but most posts have not discussed the issue or retrieved a trace. The trace is below.
One thing that sticks out from the trace is that the USER
FTP command includes the full file path instead of just the server username. Is there a way to first establish authentication with the server before requesting a download with the full path? The MSFT example seems to specify the whole path right away.
System.Net Information: 0 : [25984] RAS supported: True
System.Net Information: 0 : [25984] FtpControlStream#43231651 - Created
connection from XX.XX.XX.XX:65106 to XX.XX.XX.XX:21.
System.Net Information: 0 : [25984] Associating FtpWebRequest#58529038 with FtpControlStream#43231651
System.Net Information: 0 : [25984] FtpControlStream#43231651 - Received response [220 Remote FTP Server. All transfers are logged.]
System.Net Information: 0 : [25984] FtpControlStream#43231651 - Sending command [USER ftp://subdomain.domain.com/folder/subfolder/file.xml.gz1850771]
System.Net Information: 0 : [25984] FtpWebRequest#58529038::(Releasing FTP connection#43231651.)
System.Net Error: 0 : [25984] Exception in FtpWebRequest#58529038::GetResponse - The underlying connection was closed: The server committed a protocol violation..
at System.Net.FtpWebRequest.SyncRequestCallback(Object obj)
at System.Net.FtpWebRequest.RequestCallback(Object obj)
at System.Net.CommandStream.Dispose(Boolean disposing)
at System.IO.Stream.Close()
at System.IO.Stream.Dispose()
at System.Net.ConnectionPool.Destroy(PooledStream pooledStream)
at System.Net.ConnectionPool.PutConnection(PooledStream pooledStream, Object owningObject, Int32 creationTimeout, Boolean canReuse)
at System.Net.FtpWebRequest.FinishRequestStage(RequestStage stage)
at System.Net.FtpWebRequest.GetResponse()
c# .net ftp
add a comment |
up vote
-1
down vote
favorite
In attempting to download a file from a remote FTP server, the following exception is thrown:
The underlying connection was closed: The server committed a protocol violation.
The file was previously downloaded via a WebClient class but I am trying to implement a new solution with a FtpWebRequest per this MSFT example.
This error throws when calling request.GetResponse()
below:
string remoteFilePath =
ConfigWrapper.GetEncryptedString(
"FtpFeedPath",
@"ftp://subdomain.domain.com/folder/subfolder/file.xml.gz");
string tempFilePath = Path.GetTempPath() + @"ftpFile.gz";
string fileExtractName = Path.GetTempPath() + @"ftpFileftpFile.xml";
if (!Directory.Exists(Path.GetDirectoryName(fileExtractName)))
{
Directory.CreateDirectory(Path.GetDirectoryName(fileExtractName));
}
FtpWebRequest request =
(FtpWebRequest)WebRequest.Create(remoteFilePath);
request.Method = WebRequestMethods.Ftp.DownloadFile;
request.Timeout = -1;
request.UseBinary = true;
request.KeepAlive = true;
request.UsePassive = false;
request.Credentials = new NetworkCredential(
ConfigWrapper.GetEncryptedString(
"FtpUserName",
"123456"),
ConfigWrapper.GetEncryptedString(
"FtpPassword",
"password"),
remoteFilePath);
FtpWebResponse response = (FtpWebResponse)request.GetResponse();
Stream responseStream = response.GetResponseStream();
StreamReader reader = new StreamReader(responseStream);
Console.WriteLine(reader.ReadToEnd());
Console.WriteLine($"Download Complete, status{response.StatusDescription}");
reader.Close();
response.Close();
Digging into the exception shows this message:
ContentType = '((System.Net.WebException)ex).Response.ContentType' threw an exception of type 'System.NotImplementedException'
Most of the other StackOverflow answers related to this issue seem to resolve after changing the KeepAlive
property. That's not the case here. The other common recommendation is to get a network trace, but most posts have not discussed the issue or retrieved a trace. The trace is below.
One thing that sticks out from the trace is that the USER
FTP command includes the full file path instead of just the server username. Is there a way to first establish authentication with the server before requesting a download with the full path? The MSFT example seems to specify the whole path right away.
System.Net Information: 0 : [25984] RAS supported: True
System.Net Information: 0 : [25984] FtpControlStream#43231651 - Created
connection from XX.XX.XX.XX:65106 to XX.XX.XX.XX:21.
System.Net Information: 0 : [25984] Associating FtpWebRequest#58529038 with FtpControlStream#43231651
System.Net Information: 0 : [25984] FtpControlStream#43231651 - Received response [220 Remote FTP Server. All transfers are logged.]
System.Net Information: 0 : [25984] FtpControlStream#43231651 - Sending command [USER ftp://subdomain.domain.com/folder/subfolder/file.xml.gz1850771]
System.Net Information: 0 : [25984] FtpWebRequest#58529038::(Releasing FTP connection#43231651.)
System.Net Error: 0 : [25984] Exception in FtpWebRequest#58529038::GetResponse - The underlying connection was closed: The server committed a protocol violation..
at System.Net.FtpWebRequest.SyncRequestCallback(Object obj)
at System.Net.FtpWebRequest.RequestCallback(Object obj)
at System.Net.CommandStream.Dispose(Boolean disposing)
at System.IO.Stream.Close()
at System.IO.Stream.Dispose()
at System.Net.ConnectionPool.Destroy(PooledStream pooledStream)
at System.Net.ConnectionPool.PutConnection(PooledStream pooledStream, Object owningObject, Int32 creationTimeout, Boolean canReuse)
at System.Net.FtpWebRequest.FinishRequestStage(RequestStage stage)
at System.Net.FtpWebRequest.GetResponse()
c# .net ftp
You don't need to setMethod
toDownloadFile
instead ofListDirectory
?
– Kevin Kouketsu
Nov 19 at 19:16
@KevinKouketsu good call, edited and updated. Had been trying a different method to see if result was any different, but same error occurs.
– todon2
Nov 19 at 19:20
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
In attempting to download a file from a remote FTP server, the following exception is thrown:
The underlying connection was closed: The server committed a protocol violation.
The file was previously downloaded via a WebClient class but I am trying to implement a new solution with a FtpWebRequest per this MSFT example.
This error throws when calling request.GetResponse()
below:
string remoteFilePath =
ConfigWrapper.GetEncryptedString(
"FtpFeedPath",
@"ftp://subdomain.domain.com/folder/subfolder/file.xml.gz");
string tempFilePath = Path.GetTempPath() + @"ftpFile.gz";
string fileExtractName = Path.GetTempPath() + @"ftpFileftpFile.xml";
if (!Directory.Exists(Path.GetDirectoryName(fileExtractName)))
{
Directory.CreateDirectory(Path.GetDirectoryName(fileExtractName));
}
FtpWebRequest request =
(FtpWebRequest)WebRequest.Create(remoteFilePath);
request.Method = WebRequestMethods.Ftp.DownloadFile;
request.Timeout = -1;
request.UseBinary = true;
request.KeepAlive = true;
request.UsePassive = false;
request.Credentials = new NetworkCredential(
ConfigWrapper.GetEncryptedString(
"FtpUserName",
"123456"),
ConfigWrapper.GetEncryptedString(
"FtpPassword",
"password"),
remoteFilePath);
FtpWebResponse response = (FtpWebResponse)request.GetResponse();
Stream responseStream = response.GetResponseStream();
StreamReader reader = new StreamReader(responseStream);
Console.WriteLine(reader.ReadToEnd());
Console.WriteLine($"Download Complete, status{response.StatusDescription}");
reader.Close();
response.Close();
Digging into the exception shows this message:
ContentType = '((System.Net.WebException)ex).Response.ContentType' threw an exception of type 'System.NotImplementedException'
Most of the other StackOverflow answers related to this issue seem to resolve after changing the KeepAlive
property. That's not the case here. The other common recommendation is to get a network trace, but most posts have not discussed the issue or retrieved a trace. The trace is below.
One thing that sticks out from the trace is that the USER
FTP command includes the full file path instead of just the server username. Is there a way to first establish authentication with the server before requesting a download with the full path? The MSFT example seems to specify the whole path right away.
System.Net Information: 0 : [25984] RAS supported: True
System.Net Information: 0 : [25984] FtpControlStream#43231651 - Created
connection from XX.XX.XX.XX:65106 to XX.XX.XX.XX:21.
System.Net Information: 0 : [25984] Associating FtpWebRequest#58529038 with FtpControlStream#43231651
System.Net Information: 0 : [25984] FtpControlStream#43231651 - Received response [220 Remote FTP Server. All transfers are logged.]
System.Net Information: 0 : [25984] FtpControlStream#43231651 - Sending command [USER ftp://subdomain.domain.com/folder/subfolder/file.xml.gz1850771]
System.Net Information: 0 : [25984] FtpWebRequest#58529038::(Releasing FTP connection#43231651.)
System.Net Error: 0 : [25984] Exception in FtpWebRequest#58529038::GetResponse - The underlying connection was closed: The server committed a protocol violation..
at System.Net.FtpWebRequest.SyncRequestCallback(Object obj)
at System.Net.FtpWebRequest.RequestCallback(Object obj)
at System.Net.CommandStream.Dispose(Boolean disposing)
at System.IO.Stream.Close()
at System.IO.Stream.Dispose()
at System.Net.ConnectionPool.Destroy(PooledStream pooledStream)
at System.Net.ConnectionPool.PutConnection(PooledStream pooledStream, Object owningObject, Int32 creationTimeout, Boolean canReuse)
at System.Net.FtpWebRequest.FinishRequestStage(RequestStage stage)
at System.Net.FtpWebRequest.GetResponse()
c# .net ftp
In attempting to download a file from a remote FTP server, the following exception is thrown:
The underlying connection was closed: The server committed a protocol violation.
The file was previously downloaded via a WebClient class but I am trying to implement a new solution with a FtpWebRequest per this MSFT example.
This error throws when calling request.GetResponse()
below:
string remoteFilePath =
ConfigWrapper.GetEncryptedString(
"FtpFeedPath",
@"ftp://subdomain.domain.com/folder/subfolder/file.xml.gz");
string tempFilePath = Path.GetTempPath() + @"ftpFile.gz";
string fileExtractName = Path.GetTempPath() + @"ftpFileftpFile.xml";
if (!Directory.Exists(Path.GetDirectoryName(fileExtractName)))
{
Directory.CreateDirectory(Path.GetDirectoryName(fileExtractName));
}
FtpWebRequest request =
(FtpWebRequest)WebRequest.Create(remoteFilePath);
request.Method = WebRequestMethods.Ftp.DownloadFile;
request.Timeout = -1;
request.UseBinary = true;
request.KeepAlive = true;
request.UsePassive = false;
request.Credentials = new NetworkCredential(
ConfigWrapper.GetEncryptedString(
"FtpUserName",
"123456"),
ConfigWrapper.GetEncryptedString(
"FtpPassword",
"password"),
remoteFilePath);
FtpWebResponse response = (FtpWebResponse)request.GetResponse();
Stream responseStream = response.GetResponseStream();
StreamReader reader = new StreamReader(responseStream);
Console.WriteLine(reader.ReadToEnd());
Console.WriteLine($"Download Complete, status{response.StatusDescription}");
reader.Close();
response.Close();
Digging into the exception shows this message:
ContentType = '((System.Net.WebException)ex).Response.ContentType' threw an exception of type 'System.NotImplementedException'
Most of the other StackOverflow answers related to this issue seem to resolve after changing the KeepAlive
property. That's not the case here. The other common recommendation is to get a network trace, but most posts have not discussed the issue or retrieved a trace. The trace is below.
One thing that sticks out from the trace is that the USER
FTP command includes the full file path instead of just the server username. Is there a way to first establish authentication with the server before requesting a download with the full path? The MSFT example seems to specify the whole path right away.
System.Net Information: 0 : [25984] RAS supported: True
System.Net Information: 0 : [25984] FtpControlStream#43231651 - Created
connection from XX.XX.XX.XX:65106 to XX.XX.XX.XX:21.
System.Net Information: 0 : [25984] Associating FtpWebRequest#58529038 with FtpControlStream#43231651
System.Net Information: 0 : [25984] FtpControlStream#43231651 - Received response [220 Remote FTP Server. All transfers are logged.]
System.Net Information: 0 : [25984] FtpControlStream#43231651 - Sending command [USER ftp://subdomain.domain.com/folder/subfolder/file.xml.gz1850771]
System.Net Information: 0 : [25984] FtpWebRequest#58529038::(Releasing FTP connection#43231651.)
System.Net Error: 0 : [25984] Exception in FtpWebRequest#58529038::GetResponse - The underlying connection was closed: The server committed a protocol violation..
at System.Net.FtpWebRequest.SyncRequestCallback(Object obj)
at System.Net.FtpWebRequest.RequestCallback(Object obj)
at System.Net.CommandStream.Dispose(Boolean disposing)
at System.IO.Stream.Close()
at System.IO.Stream.Dispose()
at System.Net.ConnectionPool.Destroy(PooledStream pooledStream)
at System.Net.ConnectionPool.PutConnection(PooledStream pooledStream, Object owningObject, Int32 creationTimeout, Boolean canReuse)
at System.Net.FtpWebRequest.FinishRequestStage(RequestStage stage)
at System.Net.FtpWebRequest.GetResponse()
c# .net ftp
c# .net ftp
edited Nov 19 at 19:19
asked Nov 19 at 19:10
todon2
166
166
You don't need to setMethod
toDownloadFile
instead ofListDirectory
?
– Kevin Kouketsu
Nov 19 at 19:16
@KevinKouketsu good call, edited and updated. Had been trying a different method to see if result was any different, but same error occurs.
– todon2
Nov 19 at 19:20
add a comment |
You don't need to setMethod
toDownloadFile
instead ofListDirectory
?
– Kevin Kouketsu
Nov 19 at 19:16
@KevinKouketsu good call, edited and updated. Had been trying a different method to see if result was any different, but same error occurs.
– todon2
Nov 19 at 19:20
You don't need to set
Method
to DownloadFile
instead of ListDirectory
?– Kevin Kouketsu
Nov 19 at 19:16
You don't need to set
Method
to DownloadFile
instead of ListDirectory
?– Kevin Kouketsu
Nov 19 at 19:16
@KevinKouketsu good call, edited and updated. Had been trying a different method to see if result was any different, but same error occurs.
– todon2
Nov 19 at 19:20
@KevinKouketsu good call, edited and updated. Had been trying a different method to see if result was any different, but same error occurs.
– todon2
Nov 19 at 19:20
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
One thing that sticks out from the trace is that the
USER
FTP command includes the full file path instead of just the server username.
I believe that you cause that yourself by passing an URL (remoteFilePath
) to domain
parameter of NetworkCredential
:
request.Credentials = new NetworkCredential(
ConfigWrapper.GetEncryptedString(
"FtpUserName",
"123456"),
ConfigWrapper.GetEncryptedString(
"FtpPassword",
"password"),
remoteFilePath);
That makes no sense. If you need domain, pass domain, not URL. Though in most cases, domain is used with IIS only, what does not seem to be your case. So usually, you use NetworkCredential
constructor overload with two arguments only (username and password).
ChangingremoteFilePath
variable to just the domain name in that call results in a 530 NotLoggedIn error. The same results occurs when removing the third argument completely. For both cases, theUSER
command still contains the URL.
– todon2
Nov 19 at 19:50
Do you need the domain? How do you login with a standalone client?
– Martin Prikryl
Nov 19 at 20:37
I think I can contribute this issue to a problem in my application config. The password was preventing application errors. I was able to confirm the issue via a 3rd party FTP library and then made the change in the config, and the download seems to work.
– todon2
Nov 19 at 22:25
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
One thing that sticks out from the trace is that the
USER
FTP command includes the full file path instead of just the server username.
I believe that you cause that yourself by passing an URL (remoteFilePath
) to domain
parameter of NetworkCredential
:
request.Credentials = new NetworkCredential(
ConfigWrapper.GetEncryptedString(
"FtpUserName",
"123456"),
ConfigWrapper.GetEncryptedString(
"FtpPassword",
"password"),
remoteFilePath);
That makes no sense. If you need domain, pass domain, not URL. Though in most cases, domain is used with IIS only, what does not seem to be your case. So usually, you use NetworkCredential
constructor overload with two arguments only (username and password).
ChangingremoteFilePath
variable to just the domain name in that call results in a 530 NotLoggedIn error. The same results occurs when removing the third argument completely. For both cases, theUSER
command still contains the URL.
– todon2
Nov 19 at 19:50
Do you need the domain? How do you login with a standalone client?
– Martin Prikryl
Nov 19 at 20:37
I think I can contribute this issue to a problem in my application config. The password was preventing application errors. I was able to confirm the issue via a 3rd party FTP library and then made the change in the config, and the download seems to work.
– todon2
Nov 19 at 22:25
add a comment |
up vote
0
down vote
One thing that sticks out from the trace is that the
USER
FTP command includes the full file path instead of just the server username.
I believe that you cause that yourself by passing an URL (remoteFilePath
) to domain
parameter of NetworkCredential
:
request.Credentials = new NetworkCredential(
ConfigWrapper.GetEncryptedString(
"FtpUserName",
"123456"),
ConfigWrapper.GetEncryptedString(
"FtpPassword",
"password"),
remoteFilePath);
That makes no sense. If you need domain, pass domain, not URL. Though in most cases, domain is used with IIS only, what does not seem to be your case. So usually, you use NetworkCredential
constructor overload with two arguments only (username and password).
ChangingremoteFilePath
variable to just the domain name in that call results in a 530 NotLoggedIn error. The same results occurs when removing the third argument completely. For both cases, theUSER
command still contains the URL.
– todon2
Nov 19 at 19:50
Do you need the domain? How do you login with a standalone client?
– Martin Prikryl
Nov 19 at 20:37
I think I can contribute this issue to a problem in my application config. The password was preventing application errors. I was able to confirm the issue via a 3rd party FTP library and then made the change in the config, and the download seems to work.
– todon2
Nov 19 at 22:25
add a comment |
up vote
0
down vote
up vote
0
down vote
One thing that sticks out from the trace is that the
USER
FTP command includes the full file path instead of just the server username.
I believe that you cause that yourself by passing an URL (remoteFilePath
) to domain
parameter of NetworkCredential
:
request.Credentials = new NetworkCredential(
ConfigWrapper.GetEncryptedString(
"FtpUserName",
"123456"),
ConfigWrapper.GetEncryptedString(
"FtpPassword",
"password"),
remoteFilePath);
That makes no sense. If you need domain, pass domain, not URL. Though in most cases, domain is used with IIS only, what does not seem to be your case. So usually, you use NetworkCredential
constructor overload with two arguments only (username and password).
One thing that sticks out from the trace is that the
USER
FTP command includes the full file path instead of just the server username.
I believe that you cause that yourself by passing an URL (remoteFilePath
) to domain
parameter of NetworkCredential
:
request.Credentials = new NetworkCredential(
ConfigWrapper.GetEncryptedString(
"FtpUserName",
"123456"),
ConfigWrapper.GetEncryptedString(
"FtpPassword",
"password"),
remoteFilePath);
That makes no sense. If you need domain, pass domain, not URL. Though in most cases, domain is used with IIS only, what does not seem to be your case. So usually, you use NetworkCredential
constructor overload with two arguments only (username and password).
answered Nov 19 at 19:34
Martin Prikryl
83.3k22154342
83.3k22154342
ChangingremoteFilePath
variable to just the domain name in that call results in a 530 NotLoggedIn error. The same results occurs when removing the third argument completely. For both cases, theUSER
command still contains the URL.
– todon2
Nov 19 at 19:50
Do you need the domain? How do you login with a standalone client?
– Martin Prikryl
Nov 19 at 20:37
I think I can contribute this issue to a problem in my application config. The password was preventing application errors. I was able to confirm the issue via a 3rd party FTP library and then made the change in the config, and the download seems to work.
– todon2
Nov 19 at 22:25
add a comment |
ChangingremoteFilePath
variable to just the domain name in that call results in a 530 NotLoggedIn error. The same results occurs when removing the third argument completely. For both cases, theUSER
command still contains the URL.
– todon2
Nov 19 at 19:50
Do you need the domain? How do you login with a standalone client?
– Martin Prikryl
Nov 19 at 20:37
I think I can contribute this issue to a problem in my application config. The password was preventing application errors. I was able to confirm the issue via a 3rd party FTP library and then made the change in the config, and the download seems to work.
– todon2
Nov 19 at 22:25
Changing
remoteFilePath
variable to just the domain name in that call results in a 530 NotLoggedIn error. The same results occurs when removing the third argument completely. For both cases, the USER
command still contains the URL.– todon2
Nov 19 at 19:50
Changing
remoteFilePath
variable to just the domain name in that call results in a 530 NotLoggedIn error. The same results occurs when removing the third argument completely. For both cases, the USER
command still contains the URL.– todon2
Nov 19 at 19:50
Do you need the domain? How do you login with a standalone client?
– Martin Prikryl
Nov 19 at 20:37
Do you need the domain? How do you login with a standalone client?
– Martin Prikryl
Nov 19 at 20:37
I think I can contribute this issue to a problem in my application config. The password was preventing application errors. I was able to confirm the issue via a 3rd party FTP library and then made the change in the config, and the download seems to work.
– todon2
Nov 19 at 22:25
I think I can contribute this issue to a problem in my application config. The password was preventing application errors. I was able to confirm the issue via a 3rd party FTP library and then made the change in the config, and the download seems to work.
– todon2
Nov 19 at 22:25
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53381130%2fc-sharp-ftp-download-errors-with-authentication-system-notimplementedexception%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You don't need to set
Method
toDownloadFile
instead ofListDirectory
?– Kevin Kouketsu
Nov 19 at 19:16
@KevinKouketsu good call, edited and updated. Had been trying a different method to see if result was any different, but same error occurs.
– todon2
Nov 19 at 19:20