毎週更新されるレポートがあり、30 台以上の PC にプッシュする必要があり、その数は毎週増えています。Access データベースを取得して、サーバー上の場所からそれらのすべての PC にファイルをプッシュする方法を見つけようとしていますが、頭を悩ませているのはその方法です。コピー コマンドを使用してから、PC ID の値を文字列で使用し、それをファイル パスに入力します。これは、私が慣れ親しんでいるものよりも少し高度です。これが私がこれまでに持っているものです:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'database1DataSet1.PCID_List' table. You can move, or remove it, as needed.
this.pCID_ListTableAdapter.Fill(this.database1DataSet1.PCID_List);
}
private void button_Close_Click(object sender, EventArgs e)
{
this.Close();
}
static void button_Run_Click(object sender, EventArgs e)
{
string reportLocationCopy = @"Location TBD";
string repLoc = @"Location TBD";
if (File.Exists(repLoc))
{
// If file already exists in destination, delete it
if (File.Exists(reportLocationCopy))
File.Delete(reportLocationCopy);
File.Copy(repLoc, reportLocationCopy);
}
}
}
}