For Babelfish Release 1.11.1.3

CommonSanitizeFullFilenamePath Method

Takes in a full path to a file (including directory) as a string. Then replaces any illegal characters with a '-' mark, returning the new string.

If the file name, portion of the full path, has an "\" in it (a directory seperator) then the sanitization will not work, as the file name gets mis-interpreted. It is better instead to use the method SanitizePath()

Definition

Namespace: Scopos.BabelFish.Helpers
Assembly: BabelFish (in BabelFish.dll) Version: 1.11.1.4+b1da393815f6638555a663d9a94167ecabea5695
C#
public static string SanitizeFullFilenamePath(
	string fullFilePath
)

Parameters

fullFilePath  String
 

Return Value

String

Exceptions

See Also