Class FileHelper
Static helper class that contains functions to support file management with visual studio.
Inherited Members
Namespace: CodeFactory.WinVs
Assembly: CodeFactory.WinVs.dll
Syntax
public static class FileHelper
Properties
InvalidFileNameCharacters
The invalid characters not allowed in a file name.
Declaration
public static string InvalidFileNameCharacters { get; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
ContainsInvalidFileNameCharacter(string)
Provided file name is checked to determine if it has
Declaration
public static bool ContainsInvalidFileNameCharacter(string fileName)
Parameters
| Type | Name | Description |
|---|---|---|
| string | fileName | The filename to be evaluated. |
Returns
| Type | Description |
|---|---|
| bool | True if invalid characters exists or false if the file does not have invalid characters. |