确定C#应用程序中swf文件的路径

发布于 2024-11-02 23:19:03 字数 114 浏览 1 评论 0原文

我在 C# 应用程序中使用 swf。问题是,当我将 swf 文件的路径确定为静态路径 "c:\path" 时,该文件就可以工作。否则该文件无法工作。 我想将 swf 文件放在应用程序的文件夹中并在许多设备中运行它。

I am using swf inside c# application. the problem is that, when I determine the path of swf file as static path "c:\path" , the file is worked. otherwise the file doesn't work.
I want to put the swf file inside the folder of application and run it in many devices.

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

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

发布评论

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

评论(2

贱人配狗天长地久 2024-11-09 23:19:03

如果是Windows窗体应用程序,您可以通过添加文件夹名称来定义工作目录路径,如下所示,

private static string workingDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)

您可以访问您定义的文件夹。

例如,您可以定义 swf 文件的路径,如下所示

string swfPath = workingDirectory + @"\SWFFILES"

if it is windows form application, you can define a working directory path as below

private static string workingDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)

by adding folder names you can access the folder you defined.

for example you can define path for swf files as below

string swfPath = workingDirectory + @"\SWFFILES"
郁金香雨 2024-11-09 23:19:03

这将为您提供 Web 应用程序虚拟路径的物理路径。然后您可以将 swf 文件名附加到末尾:

String path = Server.MapPath("swffolder\\");

This should give you the physical path to the virtual path of your web app. You can then append the swf filename to the end:

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