以编程方式在 DotNetNuke 6 中创建文件夹
我需要以编程方式在 DotNetNuke 6.0.1 中创建一个文件夹并为其分配权限。在 DNN 5 中,我能够创建文件夹,但现在发生了一些变化,我为 5 创建的所有模块在 6 中都不起作用。
请帮助我。
I need to programmatically create a folder in DotNetNuke 6.0.1 and assign permission to it. In DNN 5 I was able to create folders but now something changes and all the modules I've created for 5 don't work in 6.
Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
6 中有一个新的文件夹管理器 API。
FolderManager.AddFolder 方法 (FolderMappingInfo, String)
参数
folderMapping
类型:DotNetNuke.Services.FileSystem.FolderMappingInfo
要使用的文件夹映射。
folderPath
类型:System.String
新文件夹的路径。
返回值
添加的文件夹。
实现
IFolderManager.AddFolder(FolderMappingInfo, String)
代码 API 帮助文件
There is a new Folder Manager API in 6.
FolderManager.AddFolder Method (FolderMappingInfo, String)
Parameters
folderMapping
Type: DotNetNuke.Services.FileSystem.FolderMappingInfo
The folder mapping to use.
folderPath
Type: System.String
The path of the new folder.
Return Value
The added folder.
Implements
IFolderManager.AddFolder(FolderMappingInfo, String)
Code API help file
听起来您需要查看 Directory.CreateDirectory
这相当简单。
Sounds like you need to look at Directory.CreateDirectory
It's fairly straight forward.