|
|||||
|
||||||
Other Library Functions |
function |
vfsFileDir |
Library: File system utilities (OMVFS legacy)
Include: omvfs.xin |
Return type: vfsDir Returns: The vfsDir connected to the location containing file if file was opened using an URL. |
define external vfsDir function vfsFileDir value vfsFile file
Argument definitions
Use vfsFileDir to get the directory location of the file. The function returns a vfsDir object.
You must include the following line at the beginning of your OmniMark program:
include "omvfs.xin"
file must:
General OS operation failure exceptions will return external exception VFS300. The accompanying text will contain details on the reason for the exception.
The output for this program will be "file:///programs/".
include "omvfs.xin" process local vfsFile myFile local vfsDir my-dir . . . set myFile to vfsOpen "file:///programs/myscript.xom" . . . set my-dir to vfsFileDir myFile . . . output vfsDirName my-dir
Copyright © Stilo International plc, 1988-2010.