如何在 VS 2005 安装项目中的目标计算机的根目录 (C:\) 上创建四个自定义文件夹?
我需要在目标计算机的根目录 (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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先添加自定义文件夹并将属性设置为:
(名称): 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
使本地根文件夹关联
右键单击文件系统
添加客户文件夹
将其重命名为根名称
始终创建 = 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