sanitize and validate name of file s3.

This commit is contained in:
David Lebee
2020-08-20 17:28:42 -04:00
parent 4e0c49fcf0
commit 8314145b44
7 changed files with 109 additions and 2 deletions
@@ -145,5 +145,15 @@ namespace PoweredSoft.Storage.Physical
if (!Directory.Exists(directoryPath))
Directory.CreateDirectory(directoryPath);
}
public bool IsFileNameAllowed(string fileName)
{
return true;
}
public string SanitizeFileName(string key, string replacement)
{
return key;
}
}
}