All pastes #2048485 Raw Edit

Guile UTF8 filename issue

public text v1 · immutable
#2048485 ·published 2011-04-20 00:26 UTC
rendered paste body
;; Run the following script using Guile 2.0, after "mkdir tmp && cd tmp && touch 'Müller'"

(let ((dir (opendir ".")))
  (do ((entry (readdir dir) (readdir dir)))
      ((eof-object? entry))
    (write (list entry (file-exists? entry)))
    (newline)))