C#MVC获取完整的文件路径
本文关键字:文件 路径 获取 C#MVC | 更新日期: 2023-09-27 18:28:03
首先,我要说的是,我为此挖掘了一半的互联网,我发现的每一个地方都是:"不,你不能,这是网络浏览器安全"
我需要这个用于ASP中的Intranet网页。NET MVC5+C#。应该允许用户在某种对话框中选择文件或文件夹。然后,当选择时,我想返回选定项目的路径[也包括网络驱动器上的文件或文件夹。但我更喜欢''''Server50''folder2''file.ext]
然后,我想将此路径发送到SQL DB以执行一些操作。(这很简单)
这就是我想要完整UNC路径的原因。没有要上载的文件
有人能给我一些线索吗?
因此现在可以用于intranet;]
我在客户端使用了MVC+Silverlight+证书
将Silverlight项目添加到Visual Studio解决方案:
MVC应用程序Project上的right-click
->Properties
SilverLight Application tab
->Add...
:
-检查Copy to configuration specific folder
-取消选中Add a test page...
-检查enable Silverlight debugging
银光:在.xaml.cs主页:
public MainPage()
{
InitializeComponent();
LayoutRoot.Drop += new DragEventHandler(drop);//important to add
}
private void drop(object sender, DragEventArgs e)
{
if (e.Data!=null)
{
FileInfo[] files = e.Data.GetData(DataFormats.FileDrop) as FileInfo[];
foreach(var item in files)
{
//fullpath in: item.Fullname property
}
}
}
在xaml主页设计
<Grid x:Name="LayoutRoot" Background="#FFBF6666" AllowDrop="true">
<Button x:Name="button" Content="Button" HorizontalAlignment="Left" Margin="72,38,0,0" VerticalAlignment="Top" Width="75" Click="button_Click"/>
</Grid>
right-click
Silverlight项目->Properties
Signing
选项卡->检查Sign the xap file
->Create the test certificate
在MVC应用程序中查看设置:
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<div id="silverlightControlHost">
<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="1000" height="800">
<param name="source" value="/ClientBin/System.xap" />
<param name="onError" value="onSilverlightError" />
<param name="background" value="white" />
<param name="minRuntimeVersion" value="5.0.61118.0" />
<param name="autoUpgrade" value="true" />
<a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=5.0.61118.0" style="text-decoration:none">
<img src="http://go.microsoft.com/fwlink/?LinkId=161376" alt="Get Microsoft Silverlight" style="border-style:none" />
</a>
</object>
</div>
</asp:Content>
重建两个项目
部署到生产服务器
在客户端...trusted root authorities
中安装创建的证书
现在它正在发挥作用;]
我看到一些人在web.config中添加.xap、.xaml扩展名,但对我来说没有帮助。