如何将程序复制到计算机上的其他位置

本文关键字:其他 位置 计算机 程序 复制 | 更新日期: 2023-09-27 18:25:26

现在如何将程序从源代码复制到其他文件夹(使用C#代码)?

p.S:我下载文件夹的C#源是什么?

我不知道该怎么做:/

感谢帮助:-)

如何将程序复制到计算机上的其他位置

复制程序与复制任何其他文件没有什么不同。您可以使用操作系统的工具来查看和移动文件。您可以使用图形界面,例如:Mac OSX上的Finder或Windows上的Windows Explorer。或者,如果您更喜欢使用命令行工具,请在类Unix系统上使用cp,或在Windows上使用copy

如果要在C#程序中编辑文件,必须使用标准库才能访问文件系统(文件和文件夹)。微软的文档可能会对您有所帮助:

如何:获取有关文件、文件夹和驱动器的信息(C#编程指南)

如何:复制、删除和移动文件和文件夹(C#编程指南)

从上面的链接中提取的最小示例:

    string fileName = "test.txt";
    string sourcePath = @"C:'Users'Public'TestFolder";
    string targetPath =  @"C:'Users'Public'TestFolder'SubDir";
    // Use Path class to manipulate file and directory paths. 
    string sourceFile = System.IO.Path.Combine(sourcePath, fileName);
    string destFile = System.IO.Path.Combine(targetPath, fileName);
    // To copy a file to another location and  
    // overwrite the destination file if it already exists.
    System.IO.File.Copy(sourceFile, destFile, true);