确定C#应用程序中swf文件的路径
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果是Windows窗体应用程序,您可以通过添加文件夹名称来定义工作目录路径,如下所示,
您可以访问您定义的文件夹。
例如,您可以定义 swf 文件的路径,如下所示
if it is windows form application, you can define a working directory path as below
by adding folder names you can access the folder you defined.
for example you can define path for swf files as below
这将为您提供 Web 应用程序虚拟路径的物理路径。然后您可以将 swf 文件名附加到末尾:
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: