Do not url-encode file names for (S)FTP upload
This commit is contained in:
Manuel Kroeber 2015-07-19 17:09:52 +02:00
parent c399f48276
commit 0eb0cad50c
2 changed files with 0 additions and 2 deletions

View file

@ -109,7 +109,6 @@ public override UploadResult Upload(Stream stream, string fileName)
{
UploadResult result = new UploadResult();
fileName = Helpers.GetValidURL(fileName);
string subFolderPath = Account.GetSubFolderPath(null, NameParserType.FolderPath);
string path = subFolderPath.CombineURL(fileName);
bool uploadResult;

View file

@ -67,7 +67,6 @@ public override UploadResult Upload(Stream stream, string fileName)
{
UploadResult result = new UploadResult();
fileName = Helpers.GetValidURL(fileName);
string subFolderPath = Account.GetSubFolderPath();
string path = subFolderPath.CombineURL(fileName);
bool uploadResult;