使用FTP时管道中断(以前有工作)

时间:2018-09-16 05:25:19

标签: python-3.x raspberry-pi3 ftplib

我有一个系统,它每天每天的每15、45、00分钟捕获一次图片,当我重新运行该程序时,它不再上传并抛出Errno 32 Broken Pipe。我试过使用ftplib并在我的PC上使用python上传,它可以工作,但是当我尝试将其发送到raspberry pi 3时会抛出错误。 这是我的代码段:

var query =
            from t in result
            group t.TableName by t.TableName
            into tn
            select new
            {
                Table = tn.Key,
                Schema = from s in result where s.TableName == tn.Key select s.TableSchema.First(),
                Columns = from c in result where c.TableName == tn.Key select new Column
                {
                    Name = c.ColumnName,
                    IsPrimaryKey = c.IsPrimaryKey
                }
            };

感谢您的帮助!

0 个答案:

没有答案