I am overriding below method of Telerik (FileBrowser Content Provider) to deal with Saving File on disk and Object Storage AWS
public override string StoreFile(UploadedFile file, string path, string name, params string[] arguments)
{
return base.StoreFile(file, path, name, arguments);
}
The path paramater of StoreFile works fine in case of file saving to disk but in case of Object Storage AWS it does not. Scenario - if path is like '/Object/Stack OverFlow'/ it works fine for disk but for object storage it gives same path as '/Object' , it ignores folder with (Space, Special characters etc.)
How to get this complete path in case of Object Storage AWS ?