現在、スクリーンショットを撮ってローカルマシンに保存し、後でネットワークドライブにコピーしようとしています。
Q:\ 1234567890123456789012345 \ 123456789012 \ 12345 \ Screenshots \ sc.jpg
^何人のキャラクターが話していたかについてのアイデア。その後、「12345」の後にスクリーンショットフォルダを作成するように設定しました。プログラムがポイントに達すると、このエラーが発生します。
どうすればこれを回避できますか?
また:
DirectoryInfo scdestinfo = new DirectoryInfo(scdest);
DirectoryInfo scinfo = new DirectoryInfo(sccpath);
CopyAll(scinfo, scdestinfo);
これが、フォルダ/ファイルをコピーするための私のコードです。
public void CopyAll(DirectoryInfo source, DirectoryInfo target)
{
copyall = false;
try
{
//check if the target directory exists
if (Directory.Exists(target.FullName) == false)
{
Directory.CreateDirectory(target.FullName);
}//end if
//copy all the files into the new directory
foreach (FileInfo fi in source.GetFiles())
{
fi.CopyTo(Path.Combine(target.ToString(), fi.Name), true);
}//end foreach
//copy all the sub directories using recursion
foreach (DirectoryInfo diSourceDir in source.GetDirectories())
{
DirectoryInfo nextTargetDir = target.CreateSubdirectory(diSourceDir.Name);
CopyAll(diSourceDir, nextTargetDir);
}//end foreach
//success here
copyall = true;
}//end try
catch (IOException ie)
{
MessageBox.Show(ie.Message);
//handle it here
copyall = false;
}//end catch
}//end CopyAll
そして、copyall関数。