|
Home » ASP Home » Strings Home » PrettyPath Function
A D V E R T I S E M E N T
Title |
PrettyPath Function |
Description |
PrettyPath formats a path for use in user displays. PrettyPath is useful for trimming down long directory paths or abbreviating them. No attempt is made by PrettyPath to determine the validity of the entered path's syntax or if the path already exists on the server. The output of PrettyPath is meant for display purposes only. It should not be used programmatically to pass paths to the FileSystemObject for example.
Arguments =============
There are 4 arguments. Only the first, sPath, is required. To bypass the other three arguments, enter null as a placeholder for the argument. If you specify null for any of the last three arguments, the default will be used. Defaults for each argument are below. sPath Required. String. The path to format for display. Can be a virtual, relative or absolute path to a file or folder. hLen Optional. Integer. Default: 3 Each path element will stop being displayed after this length. Value can be 0 or greater. Regardless of the remaining characters in the element, they will be replaced with three dots as placeholders "...". Example: if hLen is 2 and the path entered is "c:winntsystem32" then PrettyPath will format the path as "c:wi...sy..." If hLen is 0, the path would be "c:......" bFile Optional. Boolean. Default: False Show the file name (if path is determined to be a file by prettypath). If set to true, the bExtOnly argument is ignored and the file name in it's entirety (including extension) is shown. Does nothing if the path entered is determined to be a directory path. bExtOnly Optional. Boolean. Default: True Show the file extension (if path is determined to be a file by PrettyPath). If True, file extension is shown. If false, extension may be removed depending on the size of hLen. |
Category |
ASP » Strings |
Hits |
379344 |
Code |
Select and Copy the Code
|
|
|
Related Source Codes
A D V E R T I S E M E N T
|
Subscribe to SourceCodesWorld - Techies Talk |
New! Click here to Add your Code!
ASP Home | C Home | C++ Home | COBOL Home | Java Home | Pascal Home
Source Codes Home Page | |
|