guile-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Uploading Word documents, PDFs, PNG files etc


From: Thien-Thi Nguyen
Subject: Re: Uploading Word documents, PDFs, PNG files etc
Date: Tue, 12 May 2009 05:15:49 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux)

() Sebastian Tennant <address@hidden>
() Sun, 10 May 2009 16:21:29 +0000

      (with-output-to-file (string-append USER-UPLOAD-DIR upload-fname)
        (lambda ()
          (display upload)))

Perhaps you can convert the string in variable `upload' to a uniform vector
and write it out using `uniform-vector-write'.  It may be the case, too,
that the string can be passed to `uniform-vector-write' directly, e.g.:

      (with-output-to-file (string-append USER-UPLOAD-DIR upload-fname)
        (lambda ()
          (uniform-vector-write upload)))

thi




reply via email to

[Prev in Thread] Current Thread [Next in Thread]