vbscript – Time
**FUNCTION:** `Time()`
**Description**
Retourne l’heure courante (sans la date).
**Syntax**
`Time()`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo Time
« `
**Output :** `heure courante`
**FUNCTION:** `Time()`
**Description**
Retourne l’heure courante (sans la date).
**Syntax**
`Time()`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo Time
« `
**Output :** `heure courante`
FUNCTION: Abs() Implemented in version 1.0 Abs(Number) The Abs function returns the absolute value for a number. Negative numbers become positive. Positive numbers remain positive. Code: <% =Abs(-127.89) %> Output: 127.89 Code: <% =Abs(127.89) %> Output: 127.89
VBScript – I/O
VBScript – Conversion
METHOD: FileSystemObject.BuildPath Implemented in version 2.0 [newfullpath = ]object.BuildPath(path, name) This method is used to append a name onto an existing path. The format of the new path is ‘existingpath\name’. Code: <% dim filesys, newfullpath set filesys=CreateObject(« Scripting.FileSystemObject ») newfullpath = filesys.BuildPath(c:\inetpub\wwwroot, « images ») %> Output: « c:\inetpub\wwwroot\images »
WSH – WshShell
WSH/FSO – Collections