DELPHI中,如何把2个资源文件释放到系统临时目录?

如题,我想运行程序后,把嵌入程序中的2个资源文件(如1.exe,2.doc)文件释放到windows临时目录下并运行?重点是如何取得临时目录,不要这种方法"c:\wind... 如题,我想运行程序后,把嵌入程序中的2个资源文件(如1.exe,2.doc)文件释放到windows临时目录下并运行?重点是如何取得临时目录,不要这种方法"c:\windows\temp\",因为无法确定系统在哪个分区,要能直接分析出准确目录的方法,求高手们来段可行的delphi代码,谢谢! 展开
 我来答
景茹炜L8
2012-08-15 · TA获得超过481个赞
知道小有建树答主
回答量:617
采纳率:0%
帮助的人:372万
展开全部
先取Windws目录,然后即可得到临时目录:

procedure TForm1.Button1Click(Sender: TObject);
var
WinDir:String;
WTempDir:String;
begin
SetLength(WinDir,144);
if GetWindowsDirectory(PChar(WinDir),144)<>0 then
begin
SetLength(WinDir,StrLen(PChar(WinDir)));
WTempDir:=WinDir;
if WTempDir[Length(WTempDir)]<>'\' then
WTempDir:=WTempDir+'\';
WTempDir:=WTempDir+'temp';
if DirectoryExists(WTempDir) then
ShowMessage(WTempDir)
else
ShowMessage(WTempDir+'不存在');
end
else
RaiseLastWin32Error;
end;
匿名用户
2012-08-15
展开全部
path := ExtractFilePath(Application.Exename) + 'temp'
if not DirectoryExists(path) then
begin
ForceDirectories(PChar(path));
end;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式