Azavea.Open.DAO.CSV.CsvDescriptor.CsvDescriptor C# (CSharp) Method

CsvDescriptor() public method

Creates a descriptor for the given path. If the path may either be a file or a directory, see CsvConnectionType for descriptions of the behavior in either case.
public CsvDescriptor ( CsvConnectionType type, string path ) : System
type CsvConnectionType Which type is it, a file or a directory.
path string Path to the CSV file or directory. Will be created if it does not exist.
return System
        public CsvDescriptor(CsvConnectionType type, string path)
            : this(type, path, null, null, CsvQuoteLevel.QuoteStrings)
        {
        }

Same methods

CsvDescriptor::CsvDescriptor ( Config config, string component, ConnectionInfoDecryptionDelegate decryptionDelegate ) : System
CsvDescriptor::CsvDescriptor ( CsvConnectionType type, string path, CsvQuoteLevel quoteLevel ) : System
CsvDescriptor::CsvDescriptor ( CsvConnectionType type, string path, TextWriter writer, StreamReader reader, CsvQuoteLevel quoteLevel ) : System
CsvDescriptor::CsvDescriptor ( StreamReader reader ) : System
CsvDescriptor::CsvDescriptor ( StreamReader reader, CsvQuoteLevel quoteLevel ) : System
CsvDescriptor::CsvDescriptor ( TextWriter writer ) : System
CsvDescriptor::CsvDescriptor ( TextWriter writer, CsvQuoteLevel quoteLevel ) : System
CsvDescriptor::CsvDescriptor ( string path ) : System
CsvDescriptor::CsvDescriptor ( string path, CsvQuoteLevel quoteLevel ) : System