DIAdem Help

Property: Path for File

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

Property: Path for File

Specifies the path of a file.

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

The following example specifies the path of a file:

Function FilePath(sFile)
  Dim fso, oMyFile
  Set fso = CreateObject("Scripting.FileSystemObject")
  Set oMyFile = fso.GetFile(sFile)
  FilePath = "Path: " & oMyFile.Path
End Function

Log in to get a better experience