From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mirko Vukovic Subject: Re: odt-export fails Date: Sat, 25 Feb 2012 15:06:42 -0500 Message-ID: References: <81mx872gbf.fsf@gmail.com> <81pqd2bzh4.fsf@gmail.com> <81linqbyuv.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:49814) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S1NtJ-00055K-Dw for emacs-orgmode@gnu.org; Sat, 25 Feb 2012 15:06:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S1NtD-0002BJ-Id for emacs-orgmode@gnu.org; Sat, 25 Feb 2012 15:06:49 -0500 Received: from mail-yx0-f169.google.com ([209.85.213.169]:42924) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S1NtD-0002BF-DZ for emacs-orgmode@gnu.org; Sat, 25 Feb 2012 15:06:43 -0500 Received: by yenl6 with SMTP id l6so105107yen.0 for ; Sat, 25 Feb 2012 12:06:42 -0800 (PST) In-Reply-To: <81linqbyuv.fsf@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Jambunathan K Cc: emacs-orgmode@gnu.org The problem was fixed by changing temporary-file-directory from "c:\Users\...\AppData\Local\Temp" to "~/temp/" I am running windows 7. The environment variables TEMP & TMP both point to c:\Users\...\AppData\Local\Temp. I guess that zip/unzip were running in the ~/temp directory, while the files were stored in the ...\AppData\Local\Temp one. Thanks for your help. Mirko On Sat, Feb 25, 2012 at 12:35 PM, Jambunathan K wr= ote: > Jambunathan K writes: > >> =A0 =A0 =A0 =A0 (setq temporary-file-directory "~/tmp/") > > You can see how it is set on my Windows XP machine. Basically it some > directory under my "My Documents" path. > > I never had any problems with this setup. > > ,----[ C-h v temporary-file-directory RET ] > | temporary-file-directory is a variable defined in `C source code'. > | Its value is "~/tmp/" > | Original value was > | "c:/DOCUME~1/KJAMBU~1/LOCALS~1/Temp/" > | > | Documentation: > | The directory for writing temporary files. > | > | You can customize this variable. > | > | [back] > `---- > > #+begin_src emacs-lisp > =A0(expand-file-name "~/tmp") > #+end_src > > #+RESULTS: > : c:/Documents and Settings/kjambunathan/My Documents/My Data/tmp > --