从路径的一部分创建具有文件夹结构的子目录
如果我有一条路径,就像这样:
c:\windows\system32\inetsrv\abc.exe
我想在驱动器/路径下创建一个文件夹,例如
Z:\东西\
如何创建子目录并选择是否需要 windows 及以上、system32 及以上或 inetsrv 及以上的所有内容? 顺便说一句,我知道 DirectoryInfo
有一个名为 CreateSubDirectory()
的方法。
谢谢
If I have a path, like so:
c:\windows\system32\inetsrv\abc.exe
And I want to make a folder under a drive/path such as
Z:\Stuff\
How can I make a sub directory and select whether I want everything from windows onwards, system32 onwards, or inetsrv onwards? BTW I know DirectoryInfo
has a method called CreateSubDirectory()
.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 System.IO.Directory.CreateDirectory(path)。 它是一种静态方法,与 DirectoryInfo 不同,您需要目录的实例才能调用它。
之后,您可以使用 Xcopy 或 Robocopy 复制所有文件和子目录。
You can use System.IO.Directory.CreateDirectory(path). It is a static method unlike the DirectoryInfo one where you need an instance of a directory to call it.
After that you could use Xcopy or Robocopy to copy all the files and subdirectories.
如果您想将所有内容从一个目录复制到另一个目录,可以使用如下命令:
If you want to copy everything from one directory to another you can use something like this: