如何在 VS 2005 安装项目中的目标计算机的根目录 (C:\) 上创建四个自定义文件夹?

发布于 2024-09-27 15:19:27 字数 162 浏览 4 评论 0原文

我需要在目标计算机的根目录 (C:\Folder1) 上创建四个自定义文件夹。我过去曾在 .NET 安装项目中创建过文件夹并放置文件,但我通常使用预先配置的位置,例如“应用程序文件夹”、“公用文件文件夹”、“程序文件文件夹”等。我可以创建自定义文件夹,但如何使其指向“C:\”,然后将我的四个文件夹添加到其中?

I need to create four custom folders that are on the root of the target machine (C:\Folder1). I've created folders and placed files in .NET setup projects in the past, but I'm usually using pre-configured locations such as 'application folder' 'common files folder', 'program files folder', etc. I can create a custom folder, but how can I make it point to 'C:\' and then add my four folders to this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

对风讲故事 2024-10-04 15:19:27

首先添加自定义文件夹并将属性设置为:

(名称): Root

DefaultLocation: C:\

AlwaysCreate: True

在此自定义文件夹之后创建后,右键单击该文件夹并选择“添加”>“文件夹。

该树应如下所示:

目标计算机上的文件系统

  • Root

    • 新文件夹#1

    • 新文件夹#2

    • 新文件夹#3

    • 新文件夹#4

Start by adding a Custom Folder and set the properties as :

(Name): Root

DefaultLocation: C:\

AlwaysCreate: True

After this Custom Folder is created, right-click the folder and select Add > Folder.

The tree should look like:

File System on Target Machine

  • Root

    • New Folder #1

    • New Folder #2

    • New Folder #3

    • New Folder #4

淡水深流 2024-10-04 15:19:27

使本地根文件夹关联
右键单击文件系统
添加客户文件夹
将其重命名为根名称
始终创建 = true

将属性设置为 NEWPROPERTY1
默认位置 = C:/

现在
右键单击您创建的根文件夹
添加 - 文件夹(您需要创建的所有文件夹)
确保您始终积极创建 True

To make a local root folder relate
right click file system
add-customer folder
Rename it like Root name
always create = true

set propriety to NEWPROPERTY1
default location = C:/

now
right click the Root Folder you created
add - Folder (all folder you need to create)
be sure you active always create to True

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文