一个schema.ini定义可以覆盖多个文件吗

本文关键字:文件 覆盖 schema ini 定义 一个 | 更新日期: 2023-09-27 18:30:04

我已经为CSV文件定义了schema.ini文件,但我有多个CSV,我想对它们使用相同的定义,因为它们是一个序列。

I.e

File0.csv
File1.csv
File2.csv
File.etc.csv

我的模式大概是:

[File*.csv]
Format=Delimited(,)
ColNameHeader=True
col1="Brand Code" Text
col2=Description Text
col3="Display Sequence" Text

一个schema.ini定义可以覆盖多个文件吗

据我所知,这是不可能的

-********事实上,这是可能的,你可以用这种方式来做。

[file1.csv]
FORMAT = Delimited(#)
ColNameHeader = True
MaxScanRows=10
Col1=...
Col2=...
ColN=...
[File2.csv]
FORMAT = Delimited(#)
ColNameHeader = True
MaxScanRows=10
Col1=...
Col2=...
ColN=...

问候!

您可以根据要上传的文件格式在模块/子例程中定义和编写模式。在运行上载之前,必须运行/调用此模块/子例程以创建架构。。(我的样本使用VB6)

注意:-Filenametxt是要上传的文件名

IntFileHandleLog = FreeFile
Open App.Path & "schema.ini" For Output As #IntFileHandleLog
Print #IntFileHandleLog, "[" & FileNameTxt & "]"
Print #IntFileHandleLog, "Format=FixedLength"
Print #IntFileHandleLog, "MaxScanRows = 0"
Print #IntFileHandleLog, "CharacterSet = OEM"
Print #IntFileHandleLog, "Col1=" & """" & "Name" & """" & "Text Width 20"
Print #IntFileHandleLog, "Col2=" & """" & "PHONE_NUM" & """" & " Text Width 30"
Print #IntFileHandleLog, "Col3=" & """" & "PHONE_TYPE" & """" & " Text Width 20"
Print #IntFileHandleLog, "col4=" & """" & "UserName" & """" & " Text Width 20"
Print #IntFileHandleLog, "col5=" & """" & "A_STAT" & """" & " Text Width 10"
Print #IntFileHandleLog, "col6=" & """" & "B_STAT" & """" & " Text Width 10"
Print #IntFileHandleLog, "col7=" & """" & "RETRY" & """" & "integer width 2"
Print #IntFileHandleLog, "col8=" & """" & "Birth_Date" & """" & " double width 14"
Print #IntFileHandleLog, "Col9=" & """" & "Joint_Date" & """" & " double width 14"
Close #IntFileHandleLog