<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > CSV > cCSV class > <cCSV> constructor > <cCSV> properties > <CCSV>.Root |
Description
Return full file name of CSV file loaded by <cCSV>.Load
Syntax
'---GET
sFileName = <cCSV>.FileName
Returns
String
Full path file name
Remarks
Restrictions
You can use this property after a call to <cCSV>.Load.
See also
Examples
uses "CSV", "console"
dim data as new cCSV
data.Load(APP_ScriptPath + "big.csv", True) ' Change to existing CSV file
printl $("Loaded file is: '{data.FileName}'")
waitkey