All Frameworks Object Hierarchy This Framework Indexes
| o Property FileSeparator( | ) As (Read Only) |
| o Property PathSeparator( | ) As (Read Only) |
| o Property TemporaryDirectory( | ) As (Read Only) |
| o Func ConcatenatePaths( | iPathChunk1, | |
| iPathChunk2) As |
| o Sub CopyFile( | iPathSource, | |
| iPathDestination, | ||
| iOverwrite) |
FileSys.CopyFile("C:\Tests\File1", "C:\Tests\File2", False)
| o Sub CopyFolder( | iSourcePath, | |
| iDestinationPath) |
FileSys.CopyFolder("C:\Tests\Fold1", "C:\Tests\Fold2")
| o Func CreateFile( | iPath, | |
| iOverwrite) As |
Dim FileObj As File
Set FileObj = FileSys.CreateFile("C:\Tests\File1", False)
| o Func CreateFolder( | iPath) As |
Dim FoldObj As Folder
Set FoldObj = FileSys.CreateFolder("C:\Tests\Fold1")
| o Sub DeleteFile( | iPath) |
FileSys.DeleteFile("C:\Tests\File1")
| o Sub DeleteFolder( | iPath) |
FileSys.DeleteFolder("C:\Tests\Fold1")
| o Func FileExists( | iPath) As |
Dim Exists As Boolean
Exists = FileSys.FileExists("C:\Tests\File1")
| o Func FolderExists( | iPath) As |
Dim Exists As Boolean
Exists=FileSys.FolderExists("C:\Tests\Fold1")
| o Func GetFile( | iPath) As |
Dim FileObj As File
Set FileObj = FileSys.GetFile("C:\Tests")
| o Func GetFolder( | iPath) As |
Dim FoldObj As Folder
Set FoldObj = FileSys.GetFolder("C:\Tests\")
Copyright © 2003, Dassault Systèmes. All rights reserved.