关于文件读写路径问题有如下文件e:\a.exee:\a.dlle:\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");不保证一定可行 :)