使用 SSIS 脚本任务检测空平面文件
Detecting an empty flat file with SSIS script task
我正在寻找一个脚本任务,它可以识别文件夹中的零 KB 文件并将其输出到邮件或文本文件中。
提前致谢。如有任何问题,请告诉我。
像这样:
String FilePath = Dts.Variables["User::FilePath"].Value.ToString();
String strContents;
StreamReader sReader;
sReader = File.OpenText(FilePath);
strContents = sReader.ReadToEnd();
sReader.Close();
if (strContents.Length==0)
MessageBox.Show("Empty file");
我正在寻找一个脚本任务,它可以识别文件夹中的零 KB 文件并将其输出到邮件或文本文件中。
提前致谢。如有任何问题,请告诉我。
像这样:
String FilePath = Dts.Variables["User::FilePath"].Value.ToString();
String strContents;
StreamReader sReader;
sReader = File.OpenText(FilePath);
strContents = sReader.ReadToEnd();
sReader.Close();
if (strContents.Length==0)
MessageBox.Show("Empty file");