遍历临时目录中的多个文件并将文件插入到现有 rows/id 的 MS SQL 数据库中

Loop through multiple files in temp directory and insert files into MS SQL database with existing rows/id's

我有一个包含现有行和附件 ID 的 SQL 数据库。我有一个包含数千个 PDF 文件的文件夹,需要将其插入到该数据库中。文件应插入到基于 filename/column 的每一行中。 例子。一个名为 123.pdf 的文件应插入 ID 为 123 的行中。 我使用 Ajax 文件上传工具创建了一个 Asp.net 网络表单应用程序。如果我使用真实目录,它工作正常。我如何使用临时目录执行此操作?

protected void AjaxFileUpload1_UploadComplete(object sender, AjaxControlToolkit.AjaxFileUploadEventArgs e)
    {
        try
        {
            string filePath = e.FileName;
            string filename = Path.GetFileName(filePath);
            string ext = Path.GetExtension(filename);
            string contenttype = String.Empty;
            switch (ext)
            {
                case ".pdf":
                    contenttype = "application/pdf";
                    break;
            }
            if (contenttype != String.Empty)
            {

                string tempPath = System.IO.Path.GetTempFileName();
                AjaxFileUpload1.SaveAs(tempPath);
                using (FileStream fs = File.OpenRead(tempPath))
                {

                    BinaryReader br = new BinaryReader(fs);
                    Byte[] bytes = br.ReadBytes((Int32)fs.Length);

        //How do I create a temp directory of the files in the AjaxFileUploader?
                    var dir = new DirectoryInfo(CreateTempDirectoryHere);
                    FileInfo[] pdfFiles = dir.GetFiles();
                    foreach (FileInfo pdfFile in pdfFiles)
                    {
                        var attachmentID = Path.GetFileNameWithoutExtension(pdfFile.ToString());

                        string constr = ConfigurationManager.ConnectionStrings["MyConnection"].ConnectionString;
                        using (SqlConnection con = new SqlConnection(constr))

                        {
                            SqlCommand cmd = new SqlCommand("dbo.spUploadContentBulk", con);
                            cmd.Parameters.AddWithValue("@AttachmentID", attachmentID);
                            cmd.CommandType = CommandType.StoredProcedure;

                            cmd.Parameters.Add(new SqlParameter()
                            {
                                ParameterName = "@FileName",
                                Value = filename
                            });
                            cmd.Parameters.Add(new SqlParameter()
                            {
                                ParameterName = "@FileContent",
                                Value = bytes
                            });
                            cmd.Parameters.Add(new SqlParameter()
                            {
                                ParameterName = "@FileType",
                                Value = contenttype
                            });

                            con.Open();
                            cmd.ExecuteNonQuery();
                            con.Close();
                        }
                    }
                }
                File.Delete(tempPath);
            }
        }
        catch (Exception ex)
        {

            txtError.Text = ex.ToString();
        }

    }

我的意思更像是这样(甚至不使用临时文件夹):

protected void AjaxFileUpload1_UploadComplete(object sender, AjaxControlToolkit.AjaxFileUploadEventArgs e)
{
    try
    {
        string filename = e.FileName;
        var bytes = e.GetContents();
        var attachmentID = Path.GetFileNameWithoutExtension(fileName);
        string ext = Path.GetExtension(filename);
        string contenttype = String.Empty;
        switch (ext)
        {
            case ".pdf":
                contenttype = "application/pdf";
                break;
        }
        if (contenttype != String.Empty)
        {
            string constr = ConfigurationManager.ConnectionStrings["MyConnection"].ConnectionString;
            using (SqlConnection con = new SqlConnection(constr))
            {
                SqlCommand cmd = new SqlCommand("dbo.spUploadContentBulk", con);
                cmd.Parameters.AddWithValue("@AttachmentID", attachmentID);
                cmd.CommandType = CommandType.StoredProcedure;

                cmd.Parameters.Add(new SqlParameter()
                {
                    ParameterName = "@FileName",
                    Value = filename
                });
                cmd.Parameters.Add(new SqlParameter()
                {
                    ParameterName = "@FileContent",
                    Value = bytes
                });
                cmd.Parameters.Add(new SqlParameter()
                {
                    ParameterName = "@FileType",
                    Value = contenttype
                });

                con.Open();
                cmd.ExecuteNonQuery();
                con.Close();
            }
        }
    }
    catch (Exception ex)
    {

        txtError.Text = ex.ToString();
    }

}