分類:[.NET 全般]
2011/10/02(Sun) 23:07:22 編集(投稿者)
下記のソースコードで★印をつけてある場所(実際はつけていませんよ)なのですが、フォルダが作成されません。
何がいけないのでしょうか?
また、private void icfile()のところでファイルのコピーをしたいと思っています。
そのファイルなのですが、このソースをコンパイルしたexeの中に含めることはできないかと思っています。
ソリューションエクスプローラで登録できないか模索したのですが・・・不明です。
そういったことはできないのでしょうか?
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 button1_Click(object sender, EventArgs e)
{
if (Directory.Exists(textBox1.Text))
{
// dirPathのディレクトリは存在する
icfile();
}
else
{
// dirPathのディレクトリは存在しない
DialogResult dr = MessageBox.Show
(
"入力されたパスが存在しません。フォルダを新規作成しますか?",
"確認",
MessageBoxButtons.YesNo,
MessageBoxIcon.Question,
MessageBoxDefaultButton.Button2
);
if (DialogResult == DialogResult.Yes)★
{
MessageBox.Show(@textBox1.Text);
System.IO.Directory.CreateDirectory(@textBox1.Text);
icfile();
}
else if (DialogResult == DialogResult.No)
{
}
}
}
private void icfile()★
{
MessageBox.Show("OK");
}