将现有文件复制到新文件,不允许改写现有文件。[C#] public FileInfo CopyTo(string);
将现有文件复制到新文件,允许改写现有文件。[C#] public FileInfo CopyTo(string, bool);
[C#]
创建文本文件。 | <?XML:NAMESPACE PREFIX = MSHELP /><link tabindex="0" keywords="cpconwritingtexttofile"> |
写入文本文件。 | <link tabindex="0" keywords="cpconwritingtexttofile"> |
读取文本文件。 | <link tabindex="0" keywords="cpconreadingtextfromfile"> |
向文件中追加文本。 | <link tabindex="0" keywords="cpconopeningappendingtologfile"> |
重命名或移动文件。 | File.Move |
删除文件。 | File.Delete |
复制文件。 | File.Copy |
获取文件大小。 | FileInfo.Length |
获取文件属性。 | File.GetAttributes |
设置文件属性。 | File.SetAttributes |
确定文件是否存在。 | File.Exists |
读取二进制文件。 | <link tabindex="0" keywords="cpconReadingWritingToNewlyCreatedDataFile"> |
写入二进制文件。 | <link tabindex="0" keywords="cpconReadingWritingToNewlyCreatedDataFile"> |
检索文件扩展名。 | Path.GetExtension |
检索文件的完全限定路径。 | Path.GetFullPath |
检索路径中的文件名和扩展名。 | Path.GetFileName |
更改文件扩展名。 | Path.ChangeExtension |
being copied.
pBar1.Step = 1;
// Loop through all files to copy.
for (int x = 1; x <= filenames.Length; x++)
{
// Copy the file and increment the ProgressBar if successful.
if(CopyFile(filenames[x-1]) == true)
{
// Perform the increment on the ProgressBar.
pBar1.PerformStep();
}
}
}