我有一个客户端应用程序,它根据静态路径定位文件并相应地处理它:
string filepath = @"C:\Users\NChamber\Desktop\package\1002423A_attachments.xml";
byte[] byteArray = System.IO.File.ReadAllBytes(filepath);
channel.UploadTransaction(filepath, 27, byteArray);
这对于单个文件更新工作正常,但我需要扫描整个目录以查找所有以“* .xml”结尾的文件并处理它们。
到目前为止,我已经尝试了这个,但收效甚微:
string path = @"C:\Users\NChamber\Desktop\package\";
foreach (string file in Directory.EnumerateFiles(path, "*.xml"))
{
byte[] byteArray = System.IO.File.ReadAllBytes(path);
channel.UploadTransaction(path, 27, byteArray);
}
任何建议将不胜感激。