本文介绍了如何制作通用文件路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好.

我有问题要问你的想法.

我写了一个操作文件的代码,比如说"filex".工作时我的计算机没有问题,但是当我将程序安装到另一台计算机上时,我必须更改filex的路径才能正常工作.

我正在对filex进行简单的文件操作,仅此而已.

我该怎么做才能克服这个问题?你有什么想法?

我最好的问候...

Hey everyone.

I have question to get your ideas.

I wrote a code that operates a file, let''s say "filex". There is no problem in my computer while working, but when I install my program into an another computer, I have to change the path of filex to work properly.

I''m making simple file operations on filex, nothing more.

What can I do to overcome this? What is your ideas?

My best Regards...

推荐答案

app.exe
|-Output 
    |- filex


var binFolder = new DirectoryInfo(Application.ExecutablePath).Parent;



希望这对您有帮助...



Hope this helps you...



这篇关于如何制作通用文件路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 02:14