我正在寻找一个脚本任务,它可以识别文件夹中的零KB文件,并在邮件或文本文件中输出相同的文件。
提前致谢。如有任何问题,请告诉我。
答案 0 :(得分:1)
这样的事情:
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");