DIAdem Help

Property: Path for Folder

  • Updated2024-09-12
  • 1 minute(s) read

Property: Path for Folder

Specifies the path of a folder.

Object.Path
ObjectFolder
Object with this property
Object.PathString with read access

The following example specifies the path of a folder:

Function FolderPath(sFolder)
  Dim fso, oMyFolder
  Set fso = CreateObject("Scripting.FileSystemObject")
  Set oMyFolder = fso.GetFolder(sFolder)
  FolderPath = "Path: " & oMyFolder.Path
End Function

Log in to get a better experience