Call this member function to retrieve the full path of a specified file.
Syntax: |
---|
DlxFile.GetFilePath() |
Return Value
The full path of the specified file.
Example
Copy code | |
---|---|
var file = new DlxFile("demofile.txt");
DlxApp.Printf(file.GetFilePath());
DlxApp.Printf(file.GetFileFolder());
DlxApp.Printf(file.GetFileName());
DlxApp.Printf(file.GetFileTitle());
DlxApp.Printf(file.GetFileExt());
|