AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de archivos externos
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Returns a file path with standardized separators (separators corresponding to the ones for the current platform for example).
Note This function is very useful when using WLanguage code running on multiple platforms (Windows/Linux, for example) and manipulating a file path.
Ejemplo
// Returns a Unix path
Trace(fSeparator(fCurrentDir(), fSeparatorUnix))

// Returns a Windows path
Trace(fSeparator(fCurrentDir(), fSeparatorWindows))
Sintaxis
<Result> = fSeparator(<Initial path> [, <Separator>])
<Result>: Character string
Standardized path.
Note: <Result> is of the same type as the <Initial Path> parameter. For example, if <Initial path> is an ANSI character string, <Result> will also be an ANSI character string.
<Initial path>: Character string (ANSI or Unicode)
Directory or file path to standardize.
<Separator>: Optional character string or constant of Integer type
Separator to use for standardizing the path. Can correspond to:
  • or to a character string: all separators (\ and /) found in the <Chemin initial> parameter will be replaced by this string..
  • one of the following constants:
    fSeparatorPlatform
    (Default value)
    The separators ('\' and '/') will be replaced with the separator corresponding to the current platform.
    fSeparatorUnixThe separators ('\' and '/') will be replaced with the '/' separator.
    fSeparatorWindowsThe separators ('\' and '/') will be replaced with the '\' separator.
Componente: wd300std.dll
Versión mínima requerida
  • Versión 15
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

Señalar un error o enviar una sugerencia | Ayuda local