Chào diễn đàn
Mình đã viết đoạn mã sau: copy nhung file từ thu mực cố định đến thư mục chỉ định bằng hàm folderbrowserdialog, nhưng bây giờ mình muốn dùng lênh open để mở thư mục đó lên, tuy nhiên
mình không biết làm thế nào để nhớ path đã chọn trên. Hoặc mình muốn sử dung path trên để làm những thao tác tiếp theo
Thanks in advance
Mã code như sau:
public partial class Form1 : Form
{
string sourcePath = @"C:\text\";
string fileName1 = @"text1.xml";
string fileName2 = @"text2.xml";
public Form1()
{
InitializeComponent();
}
private void btnfolder_Click(object sender, EventArgs e)
{
DialogResult folder = folderBrowserDialog1.ShowDialog();
if (folder == DialogResult.OK)
{
var destinationFolderName = folderBrowserDialog1.SelectedPath;
if (Directory.Exists(destinationFolderName))
{
File.Copy(sourcePath + "/" + fileName1, destinationFolderName
+ "/" + fileName1);
File.Copy(sourcePath + "/" + fileName2, destinationFolderName
+ "/" + fileName2);
}
private void btnopen_Click(object sender, EventArgs e)
??? Mình muốn viết đoạn chương trình nhớ path từ lệnh trước???
Open tất cả thư mục nói trên
VD: path nhận được là D:\folder\A và mình muốn nhớ luôn path này, đến khi mình dùng lệnh folderbrowserdialog chọn thư mục mới thì sẽ thay đổi
{
Mình đã viết đoạn mã sau: copy nhung file từ thu mực cố định đến thư mục chỉ định bằng hàm folderbrowserdialog, nhưng bây giờ mình muốn dùng lênh open để mở thư mục đó lên, tuy nhiên
mình không biết làm thế nào để nhớ path đã chọn trên. Hoặc mình muốn sử dung path trên để làm những thao tác tiếp theo
Thanks in advance
Mã code như sau:
public partial class Form1 : Form
{
string sourcePath = @"C:\text\";
string fileName1 = @"text1.xml";
string fileName2 = @"text2.xml";
public Form1()
{
InitializeComponent();
}
private void btnfolder_Click(object sender, EventArgs e)
{
DialogResult folder = folderBrowserDialog1.ShowDialog();
if (folder == DialogResult.OK)
{
var destinationFolderName = folderBrowserDialog1.SelectedPath;
if (Directory.Exists(destinationFolderName))
{
File.Copy(sourcePath + "/" + fileName1, destinationFolderName
+ "/" + fileName1);
File.Copy(sourcePath + "/" + fileName2, destinationFolderName
+ "/" + fileName2);
}
private void btnopen_Click(object sender, EventArgs e)
??? Mình muốn viết đoạn chương trình nhớ path từ lệnh trước???
Open tất cả thư mục nói trên
VD: path nhận được là D:\folder\A và mình muốn nhớ luôn path này, đến khi mình dùng lệnh folderbrowserdialog chọn thư mục mới thì sẽ thay đổi
{