Folder with spaces C# session.GetFiles
Downloading from a folder with spaces seems to fail fairly consistently for me.
Essentially I am trying to get the file /DL_PDFs/010320__standards%20copy/new_standards.zip . (not url encoded on the server so the %20 is a space)
I have tried
GetFiles("/DL_PDFs/010320__standards copy/new_standards.zip","foo.zip");
GetFiles("/DL_PDFs/010320__standards%20copy/new_standards.zip","foo.zip");
GetFiles("/DL_PDFs/010320__standards*copy/new_standards.zip","foo.zip");
GetFiles("\"/DL_PDFs/010320__standards copy/new_standards.zip\"","foo.zip");
Each returns a variation of could not find file. I do not have control of the ftp server but if there is a specific change they could make to fix this I would like to know what general settings phrasing this would be under.
Essentially I am trying to get the file /DL_PDFs/010320__standards%20copy/new_standards.zip . (not url encoded on the server so the %20 is a space)
I have tried
GetFiles("/DL_PDFs/010320__standards copy/new_standards.zip","foo.zip");
GetFiles("/DL_PDFs/010320__standards%20copy/new_standards.zip","foo.zip");
GetFiles("/DL_PDFs/010320__standards*copy/new_standards.zip","foo.zip");
GetFiles("\"/DL_PDFs/010320__standards copy/new_standards.zip\"","foo.zip");
Each returns a variation of could not find file. I do not have control of the ftp server but if there is a specific change they could make to fix this I would like to know what general settings phrasing this would be under.