关于文件读写路径问题有如下文件e:\a.exee:\a.dlle:\a.txt对于a.exe 有:hDll LoadLibrary(e:\a.dll)//
关于文件读写路径问题
有如下文件
e:\a.exe
e:\a.dll
e:\a.txt
对于a.exe 有:
hDll = LoadLibrary("e:\a.dll")//成功
hDll = LoadLibrary( "a.dll")//成功
file.open("e:\a.dll")//成功
file.open( "a.dll")//失败
第四个为什么会失败呢
[解决办法]
试试 file.open( ".\\a.dll");
不保证一定可行 :)
