Creates a unique file name with the specified parameters.
Namespace: FlightPlan.OptimizerAssembly: FlightPlanOptimizer (in FlightPlanOptimizer.exe) Versión: 1.0.0.0 (1.0.0.0)
Syntax
C# |
---|
public static string CreateUniqueFileName(
string fullPath
) |
Visual Basic |
---|
Public Shared Function CreateUniqueFileName ( _
fullPath As String _
) As String |
Visual C++ |
---|
public:
static String^ CreateUniqueFileName(
String^ fullPath
) |
Parameters
- fullPath
- Type: System..::..String
A full path to a file, incuding directory, filename and extension.
Return Value
A file path with the next representation [directoryPath][fileName]_[identifier with 5 digits][fileExtension]
See Also