Back to index

These functions are useful for programs where you let the user choose files to open.



Directory.Open( path )

Opens a directory

path is the path to the directory you want to open.





Returns the name of the next directory.





Directory.Reset()

Resets the directory.





Directory.Close()

Closes the directory.





Directory.Chdir( dir )

Changes current directory.

dir is the directory you want to change to.





Directory.IsDir()

Tells you whether it's a directory or not.





Directory.IsFile()

Tells you whether it's a file or not.


Back to index