C# MVC 获取完整文件路径

C# MVC Get full file path


首先,我会声明我为此挖掘了一半的互联网以及我发现的所有地方:"No You cannot it is web browser security"。
我需要这个用于 ASP 中的 Intranet 网页。 NET MVC5 + C#。 应该允许用户在某种对话框中 select 文件或文件夹。然后当 selected 时,我想取回所选项目的路径 [还有网络驱动器上的文件或文件夹。但不是像 z:\... 这样的映射路径,我更喜欢 \\Server50\folder\folder2\file.ext]
然后我想将此路径发送到 SQL DB 以进行某些操作。 (这是简单的部分)

这就是我想要完整的 UNC 路径的原因。没有要上传的文件。

谁能告诉我从哪里寻找或开始的线索?

因此现在可以用于内部网;]
我在客户端使用了 MVC+Silverlight+证书

将 Silverlight 项目添加到 Visual Studio 解决方案:
right-click 在 MVC 应用项目上->Properties
SilverLight Application tab-> Add...:
-检查Copy to configuration specific folder
-取消选中 Add a test page...
-检查enable Silverlight debugging

白银 light:in .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 tab->勾选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 扩展名,但对我来说没有帮助。